chainparserdaily-new-zora-base-creators
Updated 2024-09-17
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
›
⌄
with initial_content as (
select
from_address as base_creator,
min(block_timestamp) as timestamp
from base.core.fact_transactions
where to_address = '0x777777c338d93e2c7adf08d102d45ca7cc4ed021' -- ERC1155 factory
and status = 'SUCCESS'
group by base_creator
)
select
date_trunc('day', timestamp) as day,
count(base_creator) as new_creators
from initial_content
where timestamp >= current_date() - 90
group by day
order by day
QueryRunArchived: QueryRun has been archived