erigon_forks

Returns the hash of the genesis block, a list of the fork block numbers that have previously occurred, and, if applicable, the next fork block.

Example

Request

curl --location 'https://eth-mainnet.blastapi.io/<project_id>' \
--header 'Content-Type: application/json' \
--data '{
    "jsonrpc": "2.0",
    "method": "erigon_forks",
    "params": [],
    "id": 3
}'

Response:

{
    "jsonrpc": "2.0",
    "id": 3,
    "result": {
        "genesis": "0xd4e56740f876aef8c010b86a40d5f56745a118d0906a34e69aec8c0db1cb8fa3",
        "heightForks": [
            1150000,
            1920000,
            2463000,
            2675000,
            4370000,
            7280000,
            9069000,
            9200000,
            12244000,
            12965000,
            13773000,
            15050000
        ],
        "timeForks": null
    }
}

Last updated