elsinadaily activity trader joe
Updated 2024-08-30
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
›
⌄
SELECT
date_trunc('day', block_timestamp) as date,
count(DISTINCT origin_from_address) as user_count,
count(DISTINCT tx_hash) as tx_count,
count(distinct pool_name) as pool_count,
sum(amount_in_usd) as total_vol,
avg(amount_in_usd) as avg_tx_vol
from
avalanche.defi.ez_dex_swaps
where
block_timestamp::date >= current_date - interval '30 days' and
platform IN ('trader-joe-v1', 'trader-joe-v2')
group by 1
order by 1 asc
QueryRunArchived: QueryRun has been archived