iboo-jbj2MVThe quantity of Unique wallets on DEX
    Updated 2022-05-27
    select block_timestamp::date as date ,
    swap_program,
    count (DISTINCT tx_id) as transactions,
    count(DISTINCT swapper) as unique_wallets
    from solana.fact_swaps
    where block_timestamp>= '2022-01-01'
    and succeeded = true
    group by 1,2
    Run a query to Download Data