Tony_Inteltotal volume2
9
1
2
3
4
5
6
7
8
›
⌄
select
token_out,
token_in,
sum(amount_in) as volume,
count(distinct tx_hash) as tx_count
from near.core.ez_dex_swaps
where token_in ilike '%usdt%' and block_timestamp::date >= current_date - 30
group by 1, 2
Run a query to Download Data