mondovtraderjoe_traders
Updated 2023-10-30
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
›
⌄
with
mintable as (
select
origin_from_address as trader,
min(block_timestamp) as mindate
from
avalanche.core.ez_decoded_event_logs
where
origin_to_address = lower('0x60aE616a2155Ee3d9A68541Ba4544862310933d4')
and event_name = 'Swap'
group by
1
)
select
date_trunc('day', mindate) as day,
count(Distinct trader) as traders,
sum(traders) over (
order by
day
) as cumulative_traders
from
mintable
group by
1
order by
1 desc
Run a query to Download Data