mo115swap from usdt txs
Updated 2023-04-26
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
›
⌄
-- forked from swap from usdt @ https://flipsidecrypto.xyz/edit/queries/1fda5a82-2ce8-4988-b117-0a21d85a2443
select BLOCK_TIMESTAMP as date,TX_HASH,
(AMOUNT_IN)as USDT,
(AMOUNT_IN_USD)as USDT_USD,
SYMBOL_IN,
(AMOUNT_OUT) as others,
(AMOUNT_OUT_USD) as others_USD,
SYMBOL_OUT,
(USDT_USD/USDT) as USDT_price,
(others_USD/others)as SYMBOL_OUT_price,
(others-usdt) as difference
from
ethereum.core.ez_dex_swaps
where
SYMBOL_IN = 'USDT'
and SYMBOL_OUT in ('USDC', 'DAI')
and date >= '2023-02-01'
order by difference DESC
limit 10
Run a query to Download Data