MLDZMNSwap pairs and platforms for VEXT trade on Ethereum
Updated 2023-10-30
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
›
⌄
select
Concat('VEXT','->',symbol_out) as swap_pair,
PLATFORM,
count(distinct tx_hash) as "Swaps",
count(distinct ORIGIN_FROM_ADDRESS) as "Traders",
sum(AMOUNT_IN_USD) as "Total volume in USD",
avg(AMOUNT_IN_USD) as "Avg. volume in USD"
from ethereum.defi.ez_dex_swaps
where TOKEN_IN = lower ('0xB2492E97a68a6E4B9E9a11B99F6C42E5aCCD38c7')
group by 1,2 having swap_pair is not null
union all
select
Concat(symbol_in,'->','VEXT') as swap_pair,
PLATFORM,
count(distinct tx_hash) as "Swaps",
count(distinct ORIGIN_FROM_ADDRESS) as "Traders",
sum(AMOUNT_OUT_USD) as "Total volume in USD",
avg(AMOUNT_OUT_USD) as "Avg. volume in USD"
from ethereum.defi.ez_dex_swaps
where TOKEN_OUT = lower ('0xB2492E97a68a6E4B9E9a11B99F6C42E5aCCD38c7')
group by 1,2 having swap_pair is not null
Run a query to Download Data