chainparserzora-base-active-creators
    Updated 2024-09-17
    with content_count as (
    select
    from_address as base_creators,
    count(distinct tx_hash) as content_created
    from base.core.fact_transactions
    where to_address = '0x777777c338d93e2c7adf08d102d45ca7cc4ed021' -- ERC1155 factory
    and status = 'SUCCESS'
    and block_timestamp >= current_date() - 30
    group by base_creators
    )

    select
    count(base_creators) as active_base_creators
    from content_count
    where content_created >= 1
    QueryRunArchived: QueryRun has been archived