web3dart icon indicating copy to clipboard operation
web3dart copied to clipboard

Ethereum library, written in Dart.

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

Someone knows how to use it? im trying to call a function with parameter of an object: mint(wallet.address, { "trustType": 1, "data": [5] }) but its not working as javascript....

Is there function to get all transactions of specifc wallet address?

Hi, I'm calling eth_getBalance method will not work and giving me error like `{"jsonrpc":"2.0","error":{"code":-32002,"message":"rejected due to project ID settings"}}` After checking infura project setting security there enable project secret for...

In `ContractFunction`, there is `encodeCall` to compose a call and `decodeReturnValues` to process its result. There are use cases to do the reverse when we parse transactions and need to...

Currently filters like `eth_newPendingTransactionFilter` refresh interval is hardcoded to be 2 seconds with `_pingDuration` constant in `filters.dart`. Then a timer is used with this interval. While 2 seconds may be...

There are methods not covered by the current client interface, like `txpool_content`. Is there a way to call them? I could not find one easily. I suggest making `Web3Client._makeRPCCall` public...

Currently for not-found transaction hashes this method breaks on passing null to `TransactionInformation.fromMap`. If one wants to handle this, it is hard to rely on this since it can change...

`eth_getBlockByNumber` returns either transaction hashes or full transactions depending on the second boolean argument. For this we have `Web3Client.getBlockInformation` that also has an optional boolean argument which is sent but...

#### why The caller's information is queried through the contract method, so the read method is needed to add the sender #### code ```dart Future read( ContractFunction function, List params,...