USER_COUNT | TX_COUNT | TOTAL_VOL | AVG_TX_VOL | |
---|---|---|---|---|
1 | 72703 | 1061498 | 325930843.408867 | 137.011532601 |
elsinaTotal activity copy
Updated 2025-01-17
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
›
⌄
SELECT
count(DISTINCT swapper) as user_count,
count(DISTINCT tx_hash) as tx_count,
sum(amount_in_usd) as total_vol,
avg(amount_in_usd) as avg_tx_vol,
from
aptos.defi.ez_dex_swaps
where
block_timestamp::date >= '2025-01-01'
Last run: 3 months ago
1
48B
9s