我正在接受有关Solidity编写的培训,当我尝试在区块链中下载ERC20示例时,我需要选择汽油限额和汽油价格。如何计算最优值? https://www.ethgasstation.info说,以5 gwei的天然气价格确定时间将为0.46分钟,是真的吗?我读过论坛,我认为这太少了
我需要为ERC20传输多少气体限制?
答案 0 :(得分:0)
您可以这样计算
const gasPrice = await web3.eth.getGasPrice();
const gasPriceLimit = await web3.eth.estimateGas({
"from" : walletbase,
"nonce" : value,
"to" : contractAddr,
"data" : data
})