View on GitHub

web3js-cn

web3.eth.gasPrice

返回当前的gas价格。这个值由最近几个块的gas价格的中值决定。只读属性。

同步调用:

web3.eth.gasPrice

异步调用:

web3.eth.getGasPrice(callback(error, result){ ... })

返回值:

示例:

var gasPrice = web3.eth.gasPrice;
console.log(gasPrice.toString(10)); // "10000000000000"

教程推荐: