We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 08a934a + d1e7943 commit 04d3014Copy full SHA for 04d3014
src/types/eth.ts
@@ -14,11 +14,14 @@ export type EthStakes = {
14
export type EthStake = {
15
pubkey: string;
16
state: string;
17
- state_updated_at: number | null;
18
balance: string | null;
+ consensus_rewards: string | null;
19
+ execution_rewards: string | null;
20
effective_balance: string | null;
- apy: number | null;
21
deposit_tx_sender: string | null;
22
+ fee_recipient: string | null;
23
+ apy: number | null;
24
+ activated_at: string | null;
25
};
26
27
export type EthereumTx = Transaction;
0 commit comments