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

Can I use this plugin to open Metamask on Flutter Web and connect to it? If yes, how can I do it?

How to use on layer2 arb network?

i keep getting the error JsonRpcError(code: 5000, message: Cannot read property 'gasLimit' of undefined) here is my code ` Transaction transaction = Transaction.callContract( maxGas: 100000, gasPrice: EtherAmount.inWei(BigInt.one), from: EthereumAddress.fromHex(account!), contract:...

Does this library not support okx-chain? Is gasprice obtained by rpc node 0? What should I do?

When I call the balanceOf function of a ERC-20 contract i get the Error 'RangeError: Value not in range: 32'. After some debug fun it seems that there is some...

# What ? How to get the name of log in tx receipt ? My transaction's log looks like this. Is there any way to get the name of the...

This is my abi json file ```` [ { "inputs": [ { "components": [ { "internalType": "address", "name": "nftSigner", "type": "address" } ], "internalType": "struct TradeLib.FinalizePurchase", "name": "data", "type": "tuple"...

Hi! I'm new to the blockchain technology, and I'm currently building a simple wallet using flutter. I can get the balance of my wallet with below code. ```dart Future getBalance(...

I have Signed Transaction Like this var response = await client.sendTransaction( credentials, chainId: chainId, Transaction( from: address, to: EthereumAddress.fromHex(_recieverAddressController.text.trim()), gasPrice: EtherAmount.inWei(BigInt.one), maxGas: 100000, value: EtherAmount.inWei(BigInt.from(weiUnit)), ), );

I would like to catch revert keywords in smart contract Is it possible with your lib ? thx