Reputation: 89
Before the Ethereum merge. The miner received the fee or reward, and the miner was known by looking at the json rpc function "eth_getBlockByNumber".
Now, I know that people who participated in staking get a reward. Has the json-rpc api been added to know how much reward each participant received?? Is there any way to find out?
Upvotes: 1
Views: 92
Reputation: 43591
The RPC API is expected to reflect on the network changes, but currently (September 16, 2022, one day after the merge) it only contains the block producer in the miner
property (same naming as with PoW for backwards compatibility). It currently does not return the voters list, or staking participants in general.
Upvotes: 1