forgashUntitled Query
    Updated 2022-09-01
    select
    block_timestamp::date,
    count(tx_id) as records,
    count(distinct tx_id) as txs,
    sum(price) as gross_vol3
    from flow.core.ez_nft_sales
    where nft_collection = 'A.e4cf4bdc1751c65d.AllDay'
    group by 1
    order by 1
    Run a query to Download Data