talebimorteza_72Untitled Query
    Updated 2022-05-28
    select swap_to_mint AS swap_to_token,
    count(tx_id) as count_tx_id
    FROM solana.fact_swaps
    where SWAP_PROGRAM='orca'
    AND
    SUCCEEDED='true'
    AND
    swap_from_mint='So11111111111111111111111111111111111111112'
    AND block_timestamp >= current_date - 30
    group by swap_to_token
    order by count_tx_id DESC
    Run a query to Download Data