Web3.swift
Web3.swift copied to clipboard
A pure swift Ethereum Web3 library
If you pod install on a new project in Xcode 10 it will default to Swift version of 4.2, which made some breaking changes that this library needs to address....
I need an EthereumData object to make a transaction locally.
I need apply user and password in some endpoints in my request. How can I pass a user and password in this request?
I could not find any example? please provide some example?
Adding offset of array elements to encoding https://solidity.readthedocs.io/en/latest/abi-spec.html#function-selector-and-argument-encoding
We can import a wallet using Mnemonic Phrase, but how to export keystore file after this wallet generated. Shall I use keystore.swift you wrote?
Hi! I checked source code and documentation and it seems there is no way to list events of the contract or subscribe to event listener. Am I right and it...
I have a simple smart contract deployed in rinkeby : ``` pragma solidity ^0.4.18; contract CarChain { struct Car { uint id; string plate; uint userId; bool registered; } struct...
if only there's a simpler way to extract private keys directly from keystore
I have send a raw transaction via infura to Rinkeby network, the function returns me a transaction hex and I couldn't search the transaction in etherscan. Please help me on...