Sbhn_NPUsed Assets
Updated 2023-05-04
9
1
2
3
4
5
6
7
8
›
⌄
select symbol_in as asset,
count(DISTINCT tx_hash) as swaps,
sum(amount_in_usd) as usd_volume
from avalanche.core.ez_dex_swaps
where block_timestamp::date >= '{{Start_Date}}' and block_timestamp::date <= '{{End_Date}}'
and origin_from_address = '{{Wallet_address}}'
group by 1
order by 3 desc
Run a query to Download Data