forgashUntitled Query
    Updated 2022-08-09
    SELECT
    date_trunc('d', block_timestamp) as _date,
    count(1) as records
    from flow.core.fact_swaps
    where block_timestamp::date >= '2022-06-01'
    group by 1
    order by 1
    Run a query to Download Data