ML6Stakewise2
Updated 2022-09-03
9
1
2
3
4
5
›
⌄
select count(distinct FROM_ADDRESS) as depositors ,sum(ETH_VALUE) as staked ,year(BLOCK_TIMESTAMP) as stake_date
from ethereum.core.fact_transactions where tx_hash in (select tx_hash from ethereum_core.fact_event_logs where
contract_address='0xc874b064f465bdd6411d45734b56fac750cda29a')
group by 3
having staked>0
Run a query to Download Data