Pmisha-bmlMdxswap.affected
Updated 2022-06-05
99
1
2
3
4
5
6
7
8
9
10
11
12
›
⌄
select
date(BLOCK_TIMESTAMP) as dt,
case
when dt between '2022-05-01' and '2022-05-03' then 'First Outage'
when dt between '2022-06-01' and '2022-06-03' then 'Second Outage'
else 'other times' end as periods,
count (distinct SWAPPER) as swappers,
count(distinct tx_id) as no_swaps
from flipside_prod_db.solana.fact_swaps
where SUCCEEDED='TRUE'
and BLOCK_TIMESTAMP>=CURRENT_DATE-45
group by 1,2
Run a query to Download Data