vendettaNumber of transactions per month
    Updated 2024-10-29
    with
    MonthlyTransactionData as (
    select
    date_trunc('month', block_timestamp) as month,
    count(*) as transaction_count
    from base.core.ez_token_transfers
    where contract_address = '0x04d5ddf5f3a8939889f11e97f8c4bb48317f1938'
    AND block_timestamp >= '2024-01-01'
    group by month
    )

    select
    month as time,
    transaction_count
    from MonthlyTransactionData
    order by time



    QueryRunArchived: QueryRun has been archived