HaisenbergSwap-From-tokens-txnsXusers
    Updated 2023-10-30
    select
    swap_from_mint as from_swap,
    address_name as token,
    count (DISTINCT tx_id) as transactions,
    count (DISTINCT swapper) as wallets
    from solana.defi.fact_swaps join solana.core.dim_labels
    on address = swap_from_mint
    where block_timestamp>= '2021-01-01'
    and succeeded = 'true'
    and swap_program ilike '%raydium%'
    group by 1,2 order by 3 desc
    LIMIT 10
    Run a query to Download Data