/eth/v1/beacon/rewards/blocks/{block_id}

Retrieve block reward info for a single block

Parameters:

block_id-string, Block identifier. Can be one of: "head" (canonical head in node's view), "genesis", "finalized", , <hex encoded blockRoot with 0x prefix>.

Example:

// Request
curl -X GET -H 'Content-Type: application/json' 
https://ethereum-beacon.blockpi.network/rpc/v1/your-rpc-key/eth/v1/beacon/rewards/blocks/head

// Result
{
    "execution_optimistic": false,
    "finalized": false,
    "data": {
        "proposer_index": "1347631",
        "total": "45027647",
        "attestations": "43448615",
        "sync_aggregate": "1579032",
        "proposer_slashings": "0",
        "attester_slashings": "0"
    }
}

Last updated