MLDZMNMCB10
    Updated 2023-01-05
    select
    SWAP_PROGRAM,
    count(distinct tx_id) as no_swaps,
    count(distinct SWAPPER) as no_trader,
    sum(SWAP_FROM_AMOUNT) as volume

    from solana.core.fact_swaps
    where SUCCEEDED='TRUE'
    and SWAP_FROM_MINT='DezXAZ8z7PnrnRJjz3wXBoRgixCa6xjnB7YaB1pPB263'
    group by 1

    Run a query to Download Data