binhachonETH Staked
Updated 2022-06-11
9
1
2
3
4
5
6
7
8
9
›
⌄
select
date_trunc('day', block_timestamp) as time,
sum(amount) as daily_amount,
sum(daily_amount) over (order by time) as total_amount
from ethereum.core.ez_token_transfers
where contract_address = '0xae7ab96520de3a18e5e111b5eaab095312d7fe84'
and from_address = '0x0000000000000000000000000000000000000000'
and time >= getdate() - interval'3 months'
group by 1
Run a query to Download Data