HaisenbergUnique-UsersXTxns
    Updated 2023-10-30
    select block_timestamp::date as date ,
    count (DISTINCT tx_id) as transactions,
    count(DISTINCT swapper) as unique_users
    from solana.defi.fact_swaps
    where swap_program ilike '%raydium%'
    AND
    block_timestamp>= '2021-01-01'
    and succeeded = 'true'
    group by 1
    Run a query to Download Data