Copyright © 2022-2024 aizws.net · 网站版本: v1.2.6·内部版本: v1.23.3·
页面加载耗时 0.00 毫秒·物理内存 61.7MB ·虚拟内存 1299.8MB
欢迎来到 AI 中文社区(简称 AI 中文社),这里是学习交流 AI 人工智能技术的中文社区。 为了更好的体验,本站推荐使用 Chrome 浏览器。
查询平均gas价格,可以使用web3.eth.getGasPrice()函数。
示例
app.js
const Web3 = require('web3') const web3 = new Web3('https://mainnet.infura.io/v3/YOUR_INFURA_API_KEY') // YOUR_INFURA_API_KEY替换为你自己的key // 根据最近几个区块,计算平均Gas价格 web3.eth.getGasPrice().then((result) => { console.log("wei: " + result) console.log("ether: " + web3.utils.fromWei(result, 'ether')) })
运行app.js
$ node app
输出
wei: 1000000000 ether: 0.000000001
web3.utils.sha3 – sha256哈希函数web3.utils.keccak256 – keccak256哈希函数web3.utils.randomHex – ...