zakkisyedTotal ETH Staked
Updated 2023-07-19
9
1
2
3
4
5
6
7
8
9
›
⌄
SELECT
SUM(amount) AS total_eth_deposited,
SUM(amount_usd) AS total_usd_value,
SUM(amount)/32 AS eth_validators,
sum(amount)*100/120440077 as pct_eth_staked -- data from coingecko on 8th April
FROM
ethereum.core.ez_eth_transfers
WHERE
eth_to_address = '0x00000000219ab540356cbb839cbe05303d7705fa'
Run a query to Download Data