0xaimanNumber of ENS minted Per Day
    Updated 2022-11-08
    select date(block_timestamp) as date, count(tx_hash ) as n_txn
    FROM
    ethereum.core.ez_nft_mints
    where project_name ='ens'
    and event_type = 'nft_mint'

    group by 1 order by 1


    Run a query to Download Data