superflyBlur daily Number of transactions
    Updated 2022-12-10
    select BLOCK_TIMESTAMP::date date,
    count(*) tx_count
    from ethereum.core.ez_nft_sales a
    where PLATFORM_NAME = 'blur'
    and BLOCK_TIMESTAMP::date >= '2022-10-19'
    and EVENT_TYPE = 'sale'
    group by 1
    order by 1

    Run a query to Download Data