kasadeghdaily lido stakers trend
Updated 2022-06-15
99
1
2
3
4
5
6
7
8
9
10
›
⌄
select
date(block_timestamp),
count(distinct(origin_address)) as "total number of stakers"
from ethereum.udm_events
WHERE origin_address = from_address -- moving of ETH from origin address to contract
AND to_address = '0xae7ab96520de3a18e5e111b5eaab095312d7fe84'
AND event_type = 'native_eth'
and date(block_timestamp)>=DATEADD(month, -3, CURRENT_DATE())
group by date(block_timestamp)
order by date(block_timestamp)
Run a query to Download Data