TRANSACTIONS | TRADERS | TOTAL_VOLUME | AVG_VOLUME | |
---|---|---|---|---|
1 | 4103221 | 421026 | 819694138.626458 | 138.504217866 |
Specterswap aggrage stables
Updated 2 days ago
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
›
⌄
SELECT
COUNT(DISTINCT tx_hash) AS transactions,
COUNT(DISTINCT trader) AS traders,
COALESCE(SUM(amount_in_usd), SUM(amount_out_usd), 0) AS total_volume,
COALESCE(AVG(amount_in_usd), AVG(amount_out_usd), 0) AS AVG_volume
FROM near.defi.ez_dex_swaps
WHERE (symbol_in IN ('USDT.e', 'USDT', 'USDC.e', 'DAI', 'CUSD', 'TUSD', 'USDT', 'USDC', 'FRAX', 'USN')
OR symbol_out IN ('USDT.e', 'USDT', 'USDC.e', 'DAI', 'CUSD', 'TUSD', 'USDT', 'USDC', 'FRAX', 'USN'))
AND block_timestamp >= '2024-01-01'
AND block_timestamp < '2025-01-01';
-- block_timestamp, tx_hash, trader,
-- amount_in_usd, amount_out_usd, platform
Last run: 2 days ago
1
49B
526s