MahrooUntitled Query
    Updated 2022-10-26
    SELECT
    -- date_trunc('day', block_timestamp) as day,
    COUNT(DISTINCT tx_id) as sales,
    COUNT(DISTINCT buyer) as buyers,
    sum(price) as volume
    FROM flow.core.ez_nft_sales
    WHERE block_timestamp > '2022-04-01'
    --GROUP BY 1

    Run a query to Download Data