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