/eth/v1/config/fork_schedule

Get scheduled upcoming forks

Retrieve all forks, past present and future, of which this node is aware.

Parameters

No Parameters

Result

Returns all forks, past present and future, of which this node is aware.

Example

Request

curl <your-endpoint>/eth/v1/config/fork_schedule

Return

{
    "data": [
        {
            "previous_version": "0x00000000",
            "current_version": "0x00000000",
            "epoch": "0"
        },
        {
            "previous_version": "0x00000000",
            "current_version": "0x01000000",
            "epoch": "74240"
        },
        {
            "previous_version": "0x01000000",
            "current_version": "0x02000000",
            "epoch": "144896"
        }
    ]
}