eth_gasPrice
返回当前的gas价格,单位:wei。
参数
无
返回值
QUANTITY
- 整数,以wei为单位的当前gas价格
示例代码
请求:
curl -X POST --data '{"jsonrpc":"2.0","method":"eth_gasPrice","params":[],"id":73}'
响应:
{
"id":73,
"jsonrpc": "2.0",
"result": "0x09184e72a000" // 10000000000000
}