Skip to content

Commit 04d3014

Browse files
authored
Merge pull request #31 from kilnfi/eth/update-rewards-structure
update eth rewards structure
2 parents 08a934a + d1e7943 commit 04d3014

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

src/types/eth.ts

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,14 @@ export type EthStakes = {
1414
export type EthStake = {
1515
pubkey: string;
1616
state: string;
17-
state_updated_at: number | null;
1817
balance: string | null;
18+
consensus_rewards: string | null;
19+
execution_rewards: string | null;
1920
effective_balance: string | null;
20-
apy: number | null;
2121
deposit_tx_sender: string | null;
22+
fee_recipient: string | null;
23+
apy: number | null;
24+
activated_at: string | null;
2225
};
2326

2427
export type EthereumTx = Transaction;

0 commit comments

Comments
 (0)