RootSoft / walletconnect-dart-sdk

Open protocol for connecting dApps to mobile wallets with QR code scanning or deep linking.
MIT License
104 stars 61 forks source link

How to get estimate gas fees for transaction #92

Closed Asadu43 closed 1 year ago

Asadu43 commented 1 year ago

How to get estimate gas fees for transaction

mmMrz commented 1 year ago

i think it's should according the chain's offical document.

Asadu43 commented 1 year ago

i have already done with web3dart package in which a method

 var p = await web3client.estimateGas(
          to: EthereumAddress.fromHex(contractAddress),
          sender: EthereumAddress.fromHex(_session!.accounts[0]),
          data: data,
        );

Something like that: What is your suggested way?