0-MIDvolume by new burners
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
›
⌄
with act1 as (
with tab1 as (
select date_trunc('minute',BLOCK_TIMESTAMP) as time
,FROM_ADDRESS
,AMOUNT
from avalanche.core.ez_token_transfers
where CONTRACT_ADDRESS in( lower('0xB97EF9Ef8734C71904D8002F8b6Bc66Dd9c48a6E'))
and TO_ADDRESS='0x0000000000000000000000000000000000000000')
select date_trunc('month',time) as month
,FROM_ADDRESS
,AMOUNT
,row_number()over(partition by FROM_ADDRESS order by month) as time_row
from tab1),
--------------------------------------
act2 as (
with tab1 as (
select date_trunc('minute',BLOCK_TIMESTAMP) as time
,FROM_ADDRESS
,AMOUNT
from arbitrum.core.ez_token_transfers
where CONTRACT_ADDRESS in (lower('0xaf88d065e77c8cC2239327C5EDb3A432268e5831'),lower('0xFF970A61A04b1cA14834A43f5dE4533eBDDB5CC8'))
and TO_ADDRESS='0x0000000000000000000000000000000000000000')
select date_trunc('month',time) as month
,FROM_ADDRESS
,AMOUNT
,row_number()over(partition by FROM_ADDRESS order by month) as time_row
from tab1),
-----------------------------
act3 as (
with tab1 as (
select date_trunc('minute',BLOCK_TIMESTAMP) as time
,FROM_ADDRESS
,AMOUNT
from optimism.core.ez_token_transfers
where CONTRACT_ADDRESS in( lower('0x7f5c764cbc14f9669b88837ca1490cca17c31607'))
and TO_ADDRESS='0x0000000000000000000000000000000000000000')
Run a query to Download Data