hessDaily Share of Tokens by New Vs. Active Creators
    Updated 2025-03-24
    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
    DATE
    TYPE
    TOKENS
    1
    2025-01-24 00:00:00.000New Creator616
    2
    2025-03-18 00:00:00.000Active Creator55
    3
    2025-03-08 00:00:00.000New Creator10
    4
    2025-02-20 00:00:00.000New Creator58
    5
    2025-03-01 00:00:00.000New Creator16
    6
    2025-02-08 00:00:00.000Active Creator166
    7
    2025-02-06 00:00:00.000New Creator31
    8
    2025-03-07 00:00:00.000Active Creator33
    9
    2025-02-13 00:00:00.000Active Creator174
    10
    2025-03-11 00:00:00.000Active Creator66
    11
    2025-03-19 00:00:00.000Active Creator61
    12
    2025-03-17 00:00:00.000New Creator10
    13
    2025-01-28 00:00:00.000New Creator262
    14
    2025-02-03 00:00:00.000Active Creator191
    15
    2025-02-08 00:00:00.000New Creator32
    16
    2025-02-21 00:00:00.000New Creator51
    17
    2025-03-23 00:00:00.000Active Creator54
    18
    2025-02-20 00:00:00.000Active Creator109
    19
    2025-02-27 00:00:00.000Active Creator76
    20
    2025-03-12 00:00:00.000New Creator16
    ...
    124
    6KB
    12s