2844 Rocket Pool
Updated 2022-04-25
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
›
⌄
select date_trunc('day',block_timestamp) as date, sum (amount)
from ethereum_core.ez_token_transfers
where contract_address='0xae78736cd615f374d3085123a210448e74fc6393'
and FROM_ADDRESS='0x0000000000000000000000000000000000000000'
and block_timestamp > '2022-01-01'
group by DATE
order by date desc
Run a query to Download Data