jennifertranSwapping No Amount
    Updated 2023-06-17
    select
    swap_from_mint as token_swap_from,
    swap_to_mint as token_swap_to,
    count(*) as number_of_swaps
    from
    solana.core.fact_swaps
    where
    swap_from_amount = 0
    and swap_to_amount = 0
    and block_timestamp >= dateadd('month', -2, current_date)
    group by
    swap_from_mint,
    swap_to_mint
    order by
    number_of_swaps desc
    Run a query to Download Data