I'm trying to explore Ethereum and creating a app which let user sign message and validate the message.
I'm using web3swift framework for this and what I have tried so far is as follows -
let web3Rinkeby = Web3.InfuraRinkebyWeb3()
let msgStr…
It is my first time working with smart contracts and my goal is to create a mobile app which can interact with it by calling methods to save or retrieve data. For this reason I have created a very simple contract using Remix and I have also deployed…
I am using the web3swift library and I managed to do some transactions, mostly gets (balanceOf, owner etc). I read the whole readme(documentation), but I am not quite sure, can we use this library to call functions from our custom smart contracts?…
I am trying to import web3swift into one of my Swift files, but get the compiler error
No such module 'web3swift'".
The import statements look like this:
import Geth
import web3swift
In my pod file, I have:
pod 'web3swift', :git =>…
I am using the web3swift library and I managed to read methods of the smart contract. But Not able to parse non-indexed events of the smart contract. can anyone give an example to parse non-indexed events of the smart contract?
I have a problem interacting with web3swift.
I need to show mnemonics to my users when they want it. Is there a way to do it?
I did a little research and found out that in trust wallet this could be done just with code:
String(data: decryptedPK,…
Hey I was able to instal the web3swift pod using pod install but afterwards I can't import it in the project, so I can't start using it. Any tips?
Here is the Podfile code
# Uncomment the next line to define a global platform for your project
#…
I'm working on a project related to blockchain and need to figure out how raw transaction can be possible. I got no reference for this as of now.
I have tried matterinc/web3swift but unable to get exact thing.
I've been stuck here for 2 days tried all methods but still failed to build successfully not able to fix section __text/__text address out of range file for architecture x86_64 while integrating web3swift MercuryProtocol.
How do I send GoerliETH from one wallet to considering I have my Wallet Address, Private Key, Infura Goerli API Key and the recipient Wallet Address.
I have tried to get balanceOf for the wallet so far, and that works with the following code I found…
I did The ETH transaction with help of web3swift and Infura endpoint. I can't able to get the status of that transaction. I have generated a transaction hash by using the following code.
guard
let fromAddress = walletAddress,
let…
I am trying to call a contract via web3 using sky winder wrapper.
What I am trying to do is call a contract where I pass x amount of token coins and pass contract address and token address. However it's failing.
the Abi contract comes from web…
I am trying to interact with a smart contract I set up.
Basically the goal is to set from an iOS App 5 Parameters
projectTitle
projectLocation
projectStart
projectEnd
teamType
I want the user to set those parameters and write it on the ropsten…
I'm making a Dapp with web3swift by matter inc. One method I come across is one of the web3.Personal extension:
public func signPersonalMessage(message: Data, from:
web3swift.EthereumAddress, password: String = default) ->
…