eth_gasPrice RPC Method

Retrieves the node's current gas price suggestion in wei.

Parameters#

None

Result#

string - The suggested gas price in wei, hex-encoded.

Code sample#

{
  "jsonrpc": "2.0",
  "method": "eth_gasPrice",
  "params": [],
  "id": 1
}

Response#

{
  "jsonrpc": "2.0",
  "id": 1,
  "result": "0x3b9aca00"
}
Try It