KARTODRaydium - Daily Active Users and txs - Latest 6 months
    Updated 2023-03-14
    select
    DATE(BLOCK_TIMESTAMP) AS "DAY",
    COUNT(DISTINCT SWAPPER) AS "Swapers",
    COUNT(DISTINCT TX_ID) AS "Swaps"
    from solana.core.fact_swaps
    where ( SWAP_PROGRAM = 'raydium v4')
    and BLOCK_TIMESTAMP >= CURRENT_DATE() - interval '6 month'
    GROUP BY 1
    Run a query to Download Data