vendettaFB 1: BUSD transfers 4 copy
Updated 2023-02-14
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
›
⌄
-- forked from a2b639f6-7ead-47d1-ad8c-d9aa89d8d22a
SELECT
case when block_timestamp<'2023-02-13' then 'a. Before Paxos issue' else 'b. After Paxos issue' end as period,
pool_name,
count(DISTINCT tx_hash) as swaps,
sum(AMOUNT_IN_USD) as volume
FROM ethereum.core.ez_dex_swaps
WHERE (SYMBOL_IN='BUSD' or SYMBOL_OUT='BUSD') and AMOUNT_IN_USD is not null and amount_in_usd>1000000 and block_timestamp>=CURRENT_DATE-INTERVAL '1 MONTH'
GROUP BY 1,2 order by 1 asc
Run a query to Download Data