Files
pezkuwi-subxt/prdoc
Ankan 73b9a8391f [Staking] Runtime api if era rewards are pending to be claimed (#4301)
closes https://github.com/paritytech/polkadot-sdk/issues/426.
related to https://github.com/paritytech/polkadot-sdk/pull/1189.

Would help offchain programs to query if there are unclaimed pages of
rewards for a given era.

The logic could look like below

```js
// loop as long as all era pages are claimed.
while (api.call.stakingApi.pendingRewards(era, validator_stash)) {
  api.tx.staking.payout_stakers(validator_stash, era)
}
```
2024-04-28 12:35:51 +00:00
..
2023-12-12 14:29:56 +00:00
2023-12-12 18:51:54 +02:00
2023-09-06 11:25:47 +03:00
2024-04-04 11:47:24 +00:00
2024-04-22 12:06:16 +00:00
2024-04-23 12:53:20 +00:00
2024-04-16 15:17:09 +00:00