kiacryptoNumber of monthly swaps in sushi swap
    Updated 2022-02-23
    SELECT date_trunc('month', block_timestamp) AS date, COUNT(*) AS number_of_swaps_per_month
    FROM ethereum.dex_swaps
    WHERE platform = 'sushiswap'
    GROUP BY date
    ORDER BY date
    Run a query to Download Data