|
| 1 | +--- |
| 2 | +description: Use the rewards API to view validator rewards. |
| 3 | +sidebar_position: 13 |
| 4 | +--- |
| 5 | + |
| 6 | +# View block rewards |
| 7 | + |
| 8 | +Use the [rewards API](https://consensys.github.io/teku/#tag/Rewards) to view the validator rewards. |
| 9 | + |
| 10 | +:::note |
| 11 | + |
| 12 | +You cannot query attestation rewards for the latest epoch. |
| 13 | + |
| 14 | +::: |
| 15 | + |
| 16 | +Enable the rewards API with the [`--rest-api-enabled`](../reference/cli/index.md#rest-api-enabled) command line option. |
| 17 | + |
| 18 | +:::tip |
| 19 | + |
| 20 | +A [Swagger interface is also available](../reference/rest.md#enable-the-rest-api-service). Use the [`--rest-api-docs-enabled`](../reference/cli/index.md#rest-api-docs-enabled) command line option to enable the web interface. |
| 21 | + |
| 22 | +::: |
| 23 | + |
| 24 | +## Limitations |
| 25 | + |
| 26 | +The following limitations apply: |
| 27 | + |
| 28 | +- The rewards API currently supports the `altair` fork upgrade and later. |
| 29 | + |
| 30 | +- The rewards API relies on state and block data to retrieve the reward information, meaning you'll receive limited data if the beacon node being queried is not an archive node. |
| 31 | + |
| 32 | +- You can only query blocks from finalized to head if you are in `prune` storage mode. |
| 33 | + |
| 34 | +## Impact of data storage modes |
| 35 | + |
| 36 | +:::tip |
| 37 | + |
| 38 | +You can change the [`data-storage-mode`](../reference/cli/index.md#data-storage-mode) without re-initializing your database. |
| 39 | + |
| 40 | +You can change the frequency that states are stored by specifying [`data-storage-archive-frequency`](../reference/cli#data-storage-archive-frequency), but it will only affect the state storage from the time that the change has been made. It will also directly impact the amount of disk space required by Teku. |
| 41 | + |
| 42 | +::: |
| 43 | + |
| 44 | +Consider using a beacon node with `archive` mode storage if you frequently call the rewards API on finalized data. However, this may produce slow results due to having to replay blocks due to the infrequent storage of states on disk (every 2048 slots by default). |
| 45 | + |
| 46 | +You can consider tuning your data storage to access data quicker, by storing more states (at the cost of disk space), for example, [setting the archive frequency](../reference/cli/index.md#data-storage-archive-frequency) to `256` or even `64`, and replaying less blocks. |
| 47 | + |
| 48 | +## Examples |
| 49 | + |
| 50 | +Query all the rewards from the block currently at head. |
| 51 | + |
| 52 | +<!--tabs--> |
| 53 | + |
| 54 | +# Example |
| 55 | + |
| 56 | +```bash |
| 57 | +curl http://localhost:5051/eth/v1/beacon/rewards/blocks/head |jq |
| 58 | +``` |
| 59 | + |
| 60 | +# Result |
| 61 | + |
| 62 | +```json |
| 63 | +{ |
| 64 | + "execution_optimistic": false, |
| 65 | + "finalized": false, |
| 66 | + "data": { |
| 67 | + "proposer_index": "555552", |
| 68 | + "total": "1217168", |
| 69 | + "attestations": "0", |
| 70 | + "sync_aggregate": "1217168", |
| 71 | + "proposer_slashings": "0", |
| 72 | + "attester_slashings": "0" |
| 73 | + } |
| 74 | +} |
| 75 | +``` |
| 76 | + |
| 77 | +<!--/tabs--> |
| 78 | + |
| 79 | +Query all the sync committee rewards from the block at head for validator index 1. |
| 80 | + |
| 81 | +<!--tabs--> |
| 82 | + |
| 83 | +# Example |
| 84 | + |
| 85 | +```bash |
| 86 | +curl -X POST \ |
| 87 | + -H 'accept: application/json' \ |
| 88 | + -H 'Content-Type: application/json' \ |
| 89 | + http://localhost:5051/eth/v1/beacon/rewards/sync_committee/head \ |
| 90 | + -d '["1"]' |jq |
| 91 | +``` |
| 92 | + |
| 93 | +# Result |
| 94 | + |
| 95 | +```json |
| 96 | +{ |
| 97 | + "execution_optimistic": false, |
| 98 | + "finalized": false, |
| 99 | + "data": [ |
| 100 | + { |
| 101 | + "validator_index": "1", |
| 102 | + "reward": "16778" |
| 103 | + } |
| 104 | + ] |
| 105 | +} |
| 106 | +``` |
| 107 | + |
| 108 | +<!--/tabs--> |
| 109 | + |
| 110 | +Query attestation rewards from epoch 204644, just for validator index 0. |
| 111 | + |
| 112 | +<!--tabs--> |
| 113 | + |
| 114 | +# Example |
| 115 | + |
| 116 | +```bash |
| 117 | +curl -X POST \ |
| 118 | + -H 'accept: application/json' \ |
| 119 | + -H 'Content-Type: application/json' \ |
| 120 | + http://localhost:5051/eth/v1/beacon/rewards/attestations/204648 \ |
| 121 | + -d '["0"]' |jq |
| 122 | +``` |
| 123 | + |
| 124 | +# Result |
| 125 | + |
| 126 | +```json |
| 127 | + { |
| 128 | + "execution_optimistic": false, |
| 129 | + "finalized": true, |
| 130 | + "data": { |
| 131 | + "ideal_rewards": [...], |
| 132 | + "total_rewards": [ |
| 133 | + { |
| 134 | + "validator_index": "0", |
| 135 | + "head": "3125", |
| 136 | + "target": "6005", |
| 137 | + "source": "3236" |
| 138 | + } |
| 139 | + ] |
| 140 | + } |
| 141 | +} |
| 142 | +``` |
0 commit comments