No Data to Display
hessinherent-yellow
Updated 2025-04-14
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
›
⌄
with base as (select a.*,
to_address as collection_address,
regexp_substr_all(substr(data,11, len(data)), '.{64}') as segmented,
TRIM(TRY_HEX_DECODE_STRING(segmented[6]::STRING), '\x00') AS name,
TRIM(TRY_HEX_DECODE_STRING(segmented[7]::STRING), '\x00') AS name1,
concat(name,' ',name1) as collection_name
from monad.testnet.fact_traces a join monad.testnet.fact_event_logs b on a.tx_hash = b.tx_hash and a.block_timestamp = b.block_timestamp
where a.block_timestamp::Date >= '2025-01-08'
and TYPE IN ('CREATE', 'CREATE2')
and OUTPUT IS NOT NULL
and a.TX_SUCCEEDED = 'TRUE'
and a.TRACE_SUCCEEDED = 'TRUE'
having collection_name is not null )
select distinct collection_address,
name,
name1
from base
limit 10000
Last run: 13 days ago
0
2B
45s