LittlerDataUntitled Query
    Updated 2022-12-21
    select
    date_trunc('week',block_timestamp) as date
    ,sum(tx_fee) as Weekly_fee
    ,count(distinct tx_hash) Weekly_mints
    from ethereum.core.ez_nft_mints
    where block_timestamp >= '2022-01-01'
    group by 1
    Run a query to Download Data