如何计算最佳天然气限额和天然气价格?

时间:2018-06-20 21:22:24

标签: ethereum smartcontracts cryptocurrency

我正在接受有关Solidity编写的培训,当我尝试在区块链中下载ERC20示例时,我需要选择汽油限额和汽油价格。如何计算最优值? https://www.ethgasstation.info说,以5 gwei的天然气价格确定时间将为0.46分钟,是真的吗?我读过论坛,我认为这太少了

我需要为ERC20传输多少气体限制?

1 个答案:

答案 0 :(得分:0)

您可以这样计算

const gasPrice = await web3.eth.getGasPrice();
const gasPriceLimit = await web3.eth.estimateGas({
     "from"      : walletbase,       
     "nonce"     : value, 
     "to"        : contractAddr,     
     "data"      : data
})