web3.eth.getGasPrice
web3.eth.getGasPrice()
方法用来获取当前gas价格,该价格由最近的若干块
的gas价格中值决定。
调用:
web3.eth.getGasPrice([callback])
返回值:
一个Promise对象,其解析值为表示当前gas价格的字符串,单位为wei。
示例代码:
web3.eth.getGasPrice().then(console.log);
> "20000000000"
在线工具推荐: Three.js AI纹理开发包 - YOLO合成数据生成器 - GLTF/GLB在线编辑 - 3D模型格式在线转换 - 可编程3D场景编辑器
web3.eth.getGasPrice()
方法用来获取当前gas价格,该价格由最近的若干块
的gas价格中值决定。
调用:
web3.eth.getGasPrice([callback])
返回值:
一个Promise对象,其解析值为表示当前gas价格的字符串,单位为wei。
示例代码:
web3.eth.getGasPrice().then(console.log);
> "20000000000"