web3.eth.getGasPrice
code:getGasPrice.js
現在のガス料金オラクルを返します。
このガス料金は過去数ブロックのガス料金の中央値により決定されます。
戻り値
String を返す Promise
現在のガス料金
文字列型の数値
単位はwei
巨大な数字を JavaScript で扱う際の注意事項を参照してください。
サンプル
code:example.js
web3.eth.getGasPrice()
.then(console.log);
"20000000000"
原文