KaskoazulNumber of pairs
    Updated 2022-02-27
    SELECT
    count(distinct CONCAT (swap_from_mint, '-', swap_to_mint)) as PAIRS
    FROM
    solana.swaps
    WHERE block_timestamp::date >= '2022-02-01'
    AND succeeded = 'True'

    Run a query to Download Data