saeide-ahmadi-7Challenge 1
    Updated 2022-05-04
    SELECT
    address_name AS swapped_to_token,
    COUNT(tx_id) AS count_tx_id
    FROM solana.fact_swaps a
    LEFT JOIN solana.dim_labels b
    ON a.swap_to_mint = b.address
    WHERE swap_from_mint = 'So11111111111111111111111111111111111111112'
    AND succeeded = 'TRUE'
    AND swap_program = 'orca'
    AND block_timestamp BETWEEN '2022-02-01' AND '2022-02-28'
    GROUP BY swapped_to_token
    ORDER BY count_tx_id DESC
    LIMIT 3
    Run a query to Download Data