web3dart icon indicating copy to clipboard operation
web3dart copied to clipboard

Ethereum library, written in Dart.

Results 60 web3dart issues
Sort by recently updated
recently updated
newest added

Using this in a for loop starting at 0 and right now it is running from 0 -> 0x28 so about 45-50 times I believe. Using: ```getBlockInformation(blockNumber: BlockNum.exact(i).toBlockParam());``` When it...

…roperly @simolus3 Let me know your thoughts on this. When using getTransactionByHash() function, r, s,v from msgSig are not returned. Removed them without making them nullable in order to leave...

hi I have read your code and you connect to etherscan and infura for the node, instead I have my own private blockchain and I have to implement the api...

Does web3dart support EIP712 or are there plans to do so or would you accept a PR? ---- Intro: * https://medium.com/metamask/scaling-web3-with-signtypeddata-91d6efc8b290 Spec: * https://eips.ethereum.org/EIPS/eip-712 Client library implementations (**this is what...

I personally would like to have AbiCoder support from https://docs.ethers.io/v5/api/utils/ Thank you

Client httpClient = Client(); Web3Client ethClient = Web3Client(rpcUrl, httpClient); If i turn Ganache off, ethClient.call takes a huge ammount of time to return. Is there a way to set a...

The method seems to have some bug... Code: ```dart var stream = client.pendingTransactions(); stream.listen((event) { print(event); }); ``` Error output: ``` [VERBOSE-2:ui_dart_state.cc(186)] Unhandled Exception: RPCError: got code -32601 with msg...

Hi I need to listen some event into my dApp project Inside your suggested document, listen to each event as follows final eth = window.ethereum; if (eth != null) eth!.stream('chainChanged').listen((event)...

Hi, I am very new to web3dart or blockchain. I have some problem with web3dart, I am unable to send transaction using the dart code attached in this issue. The...