andurilMPLEX
    Updated 2022-09-20
    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