andurilMPLEX
Updated 2022-09-20Copy Reference Fork
99
1
2
3
4
5
6
7
8
9
10
11
12
›
⌄
select
date(block_timestamp) as date,
count(distinct tx_id),
count(distinct swapper),
sum(swap_to_amount) as mplx_amt,
'Buy' as type
from solana.core.fact_swaps
where
date(block_timestamp) >= '2022-09-19'
and succeeded = 'TRUE'
AND swap_to_mint = 'METAewgxyPbgwsseH8T16a39CQ5VyVxZi9zXiDPY18m'
group by date
Run a query to Download Data