DATE | TYPE | TOKENS | |
---|---|---|---|
1 | 2025-01-24 00:00:00.000 | New Creator | 616 |
2 | 2025-03-18 00:00:00.000 | Active Creator | 55 |
3 | 2025-03-08 00:00:00.000 | New Creator | 10 |
4 | 2025-02-20 00:00:00.000 | New Creator | 58 |
5 | 2025-03-01 00:00:00.000 | New Creator | 16 |
6 | 2025-02-08 00:00:00.000 | Active Creator | 166 |
7 | 2025-02-06 00:00:00.000 | New Creator | 31 |
8 | 2025-03-07 00:00:00.000 | Active Creator | 33 |
9 | 2025-02-13 00:00:00.000 | Active Creator | 174 |
10 | 2025-03-11 00:00:00.000 | Active Creator | 66 |
11 | 2025-03-19 00:00:00.000 | Active Creator | 61 |
12 | 2025-03-17 00:00:00.000 | New Creator | 10 |
13 | 2025-01-28 00:00:00.000 | New Creator | 262 |
14 | 2025-02-03 00:00:00.000 | Active Creator | 191 |
15 | 2025-02-08 00:00:00.000 | New Creator | 32 |
16 | 2025-02-21 00:00:00.000 | New Creator | 51 |
17 | 2025-03-23 00:00:00.000 | Active Creator | 54 |
18 | 2025-02-20 00:00:00.000 | Active Creator | 109 |
19 | 2025-02-27 00:00:00.000 | Active Creator | 76 |
20 | 2025-03-12 00:00:00.000 | New Creator | 16 |
hessDaily Share of Tokens by New Vs. Active Creators
Updated 2025-03-24
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
27
28
29
30
›
⌄
with base as (select a.block_timestamp,
a.tx_hash,
origin_from_address,
'0x' || substr(topics[1],27) as token_address,
'0x' || substr(topics[2],27) as creator_address,
'' as mcapInEth,
regexp_substr_all(substr(input_data,11, len(input_data)), '.{64}') as segmented,
TRIM(TRY_HEX_DECODE_STRING(segmented[8]::STRING), '\x00') AS name,
TRIM(TRY_HEX_DECODE_STRING(segmented[10]::STRING), '\x00') AS symbol,
TRIM(TRY_HEX_DECODE_STRING(segmented[12]::STRING), '\x00') AS description,
REGEXP_REPLACE(SUBSTRING(segmented[2], 3), '^0+', '') AS cleaned_data,
livequery.utils.udf_hex_to_int(cleaned_data)/pow(10,18) as amount
from ronin.core.fact_event_logs a join ronin.core.fact_transactions b on a.tx_hash = b.tx_hash
where topics[0] = '0xf372df0af3c16a1deb41b25691dd807a3836ba8f443e83d24c1406ae3748232e'
and a. TX_SUCCEEDED = 'TRUE'
and origin_to_address = '0xa54b0184d12349cf65281c6f965a74828ddd9e8f'
)
,
new as ( select min(block_timestamp) as day,
from_address
from ronin.core.fact_transactions
group by 2
having day >= current_date - 60)
select block_timestamp::date as date,
case when creator_address in (select from_address from new) then 'New Creator' else 'Active Creator' end as type,
count(DISTINCT token_address ) as tokens
from base
group by 1,2
Last run: about 1 month ago
...
124
6KB
12s