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

This library has any implementation regarding Metamask?

I just want to know how to switch the network in MetaMask mobile using code

Hi, I am developing a digital signature app based on ECDSA with Ethereum. After several tests i noted that the random keys creation may be inconsistent by validating the signatures...

I put a file Lock.abi.json under lib/contracts, ran flutter pub run build_runner build, but the Lock.g.dart file was not generated, can you help me? Below is my dependency graph ![WechatIMG356](https://user-images.githubusercontent.com/42966080/234874410-d7462c29-f7f4-4270-814e-6f2d1760b40c.jpeg)...

this contract abi.json has same event name; ``` https://goerli.etherscan.io/token/0x326c977e6efc84e512bb9c30f76e30c160ed06fb?a=0x4441a4316ae770B8373267CAA23FcF2ba1fCb7B2#code ``` ![image](https://user-images.githubusercontent.com/4426715/229111339-5d150f5c-f0de-41a7-bed1-b5ea53f1ad97.png)

RPCError: got code -32000 with msg "replacement transaction underpriced". I am unable to transact any ether and getting the above-shared error. I tried the older as well as the new...

``` const String rpcUrl = 'https://eth-goerli.api.onfinality.io/public'; var res = await client.sendTransaction( credentials, Transaction( to: EthereumAddress.fromHex('xxxxx'), gasPrice: EtherAmount.fromUnitAndValue(EtherUnit.kwei, 10), maxGas: 100000, value: EtherAmount.fromUnitAndValue(EtherUnit.gwei, 1000000), //0.0001eth // value: EtherAmount.fromUnitAndValue(EtherUnit.ether, 0.01), ), chainId...

If a contract event contains indexed parameters bigger than 32 bytes when decoded, or have a dynamic type they are not included by the decodeResults function from contracts/abi/abi.dart since they...

Multiquery RPC feature: This PR adds functionality for making several rpc queries in one request. Handling most of the stuff internally in a separate implementation of a Web3Client for compatibility...