Updated 2023-01-24
    select
    count(tx_hash) as n_transactions,
    count(distinct tx_hash) as n_distinct_transactions
    from ethereum.core.ez_nft_mints
    where project_name = 'ens'
    and date_trunc('month',block_timestamp) = '2022-10-01'
    limit 10000;
    Run a query to Download Data