0xaimanstable rotation
Updated 2022-06-06
99
1
2
3
4
5
6
7
8
9
10
11
›
⌄
select date(block_timestamp) as dt, sum(swap_to_amount) as total_stable_vol -- date(block_timestamp) as dt , count(distinct swapper) as n_swapper
from ( select *
from solana.fact_swaps
where block_timestamp>='2022-04-01')
where swap_to_mint='EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v'
or swap_to_mint='Es9vMFrzaCERmJfrF4H2FYD4KCoNkY11McCe8BenwNYB'
group by 1 order by 1
Run a query to Download Data