eth_blockNumber - Base

Example code for the eth_blockNumber JSON-RPC method. Complete guide on how to use eth_blockNumber JSON-RPC in GetBlock Web3 documentation.

The eth_blockNumber method returns the number of the most recent block on the Base blockchain. This is a fundamental method for tracking chain progress and is commonly used for synchronization, monitoring, and determining confirmation counts.

Parameters

  • None

Request

cURL
curl --location --request POST 'https://go.getblock.io/<ACCESS-TOKEN>/' \
--header 'Content-Type: application/json' \
--data-raw '{
    "jsonrpc": "2.0",
    "method": "eth_blockNumber",
    "params": [],
    "id": "getblock.io"
}'

Response

response.json
{
    "jsonrpc": "2.0",
    "id": "getblock.io",
    "result": "0x12d687f"
}

Response Parameters

Parameter
Type
Description

jsonrpc

string

JSON-RPC protocol version ("2.0")

id

string

Request identifier matching the request

result

string

Hexadecimal representation of the current block number

Use Cases

  • Chain Synchronization: Monitor sync progress by comparing local block number with the network

  • Transaction Confirmation: Calculate confirmation count by subtracting transaction block from current block

  • Event Indexing: Determine starting point for event log queries

  • Health Monitoring: Track block production rate to detect chain issues

  • Block Polling: Implement block-based polling for new transactions or events

Error Handling

Error Code
Message
Description

-32603

Internal error

Node synchronization issue or internal failure

-32600

Invalid request

Malformed JSON-RPC request

Web3 Integration

Last updated

Was this helpful?