← Robinhood Chain overview

Robinhood Chain · eth

eth_blobBaseFee

Returns the base fee per blob gas in wei.

cURL

Endpoint: https://rh-mainnet.eu1.azxa.io/<api-key> — replace <api-key> with your API key from the Azxa app .

Terminal
curl -X POST https://rh-mainnet.eu1.azxa.io/<api-key> \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"eth_blobBaseFee","params":[]}'

Example request

JSON-RPC
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "eth_blobBaseFee",
  "params": []
}

Result

Blob gas base fee

Example response
{
  "jsonrpc": "2.0",
  "id": 1,
  "result": "0x3f5694c1f"
}
Schema
{
  "type": "string",
  "title": "Blob gas base fee",
  "pattern": "^0x(0|[1-9a-f][0-9a-f]*)$"
}

Test fixture

Fixture: get-current-blobfee

Request
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "eth_blobBaseFee"
}
Response
{
  "jsonrpc": "2.0",
  "id": 1,
  "result": "0x1"
}