drone-mostafaUntitled Query
Updated 2022-06-09
9
1
2
3
4
5
6
›
⌄
select date_trunc('day', block_timestamp) as block_day, sum(amount) as volume, avg(amount) as average_staked,
count(distinct origin_address) as stakers
from ethereum.udm_events where symbol = 'stETH'
and contract_address = '0xae7ab96520de3a18e5e111b5eaab095312d7fe84'
AND block_timestamp > '2022-01-01'
and amount is not null group by 1
Run a query to Download Data