elsinaTotal activity
Updated 2024-12-08
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
›
⌄
SELECT
count(DISTINCT trader) as user_count,
count(DISTINCT tx_hash) as tx_count,
count(distinct platform) as dex_count,
sum(amount_in_usd) as total_vol,
avg(amount_in_usd) as avg_tx_vol,
from
near.defi.ez_dex_swaps
where
block_timestamp::date between '2024-12-01' and '2024-12-31' and
platform ilike '%ref%'
QueryRunArchived: QueryRun has been archived