adriaparcerisasFourthwall deployed contracts 3: Arbitrum
Updated 2025-03-31
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
›
⌄
with
addresses as (
select distinct decoded_log:deployment as addresses
from arbitrum.core.fact_decoded_event_logs x
where x.contract_address=lower('0x7c487845f98938bb955b1d5ad069d9a30e4131fd')
AND event_name ilike '%added%'
)
SELECT
trunc(block_timestamp,'day') as "Date",
count(distinct nft_address) as "# of contracts",
count(distinct tokenid) as "Tokens created",
"Tokens created"/"# of contracts" as "Total tokens created per contract"
from arbitrum.nft.ez_nft_transfers
where nft_address in (select * from addresses)
and nft_from_address='0x0000000000000000000000000000000000000000'
and block_timestamp >=current_date-INTERVAL '{{number_of_months}} MONTHS'
group by 1 order by 1 asc
Auto-refreshes every 3 hours
QueryRunArchived: QueryRun has been archived