在Aurora网络上,使用了一种名为“gwei”的单位来计算费用,它是以以太币(ETH)的最小单位wei为基础的。
示例代码:
// 计算交易费用 const gasPrice = web3.utils.toWei('10', 'gwei'); const gasLimit = 21000; const transactionFee = gasPrice * gasLimit;
// 打印交易费用 console.log(web3.utils.fromWei(String(transactionFee), 'ether')); // 输出以太币的数量