KingTigerMafia-7mwRZbETH Staked
Updated 2022-06-13
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
›
⌄
select block_timestamp::date, sum(amount)
from ethereum.udm_events
where origin_address = from_address
and to_address = '0xae7ab96520de3a18e5e111b5eaab095312d7fe84'
and event_type = 'native_eth'
group by 1
order by 1 asc
select block_timestamp::date, sum(amount)
from ethereum.udm_events
where origin_address = from_address
and to_address = '0xae7ab96520de3a18e5e111b5eaab095312d7fe84'
and event_type = 'native_eth'
and block_timestamp::date >= current_date - 90
group by 1
order by 1 asc
Run a query to Download Data