Base RPC
How to use it
// yarn add @tatumio/tatum
import { TatumSDK, Base, Network } from '@tatumio/tatum'
const tatum = await TatumSDK.init<Base>({ network: Network.BASE })
const latestBlock = await tatum.rpc.blockNumber()
await tatum.destroy() // Destroy Tatum SDK - needed for stopping background jobs
Overview
The eth_blockNumber
method returns the number of the most recent block on the blockchain. This method is commonly used to track the current state of the network, monitor for new blocks, or fetch historical data.
Use cases for eth_blockNumber
include:
- Synchronising a local copy of the blockchain with the network
- Checking the status of a transaction by comparing its block number to the current block number
- Determining the current network state for smart contract interactions
Parameters
The eth_blockNumber
method does not require any parameters.
Return Object
The eth_blockNumber
method returns a single field:
blockNumber
: The number of the most recent block on the blockchain. The value is returned as a hexadecimal string.
Response Example
{
"jsonrpc": "2.0",
"id": 83,
"result": "0xb2e214"
}