Afonso_DiazOvertime
    Updated 2025-02-26
    with

    main as (
    select
    tx_id,
    block_timestamp,
    signers[0] as creator,
    decoded_instruction:args:symbol as symbol,
    decoded_instruction:accounts[0]:pubkey as token_address
    from
    solana.core.fact_decoded_instructions
    where
    year(block_timestamp) >= 2024
    and program_id = '6EF8rrecthR5Dkzon8Nwu78hRvfCKubJ14M5uBEwF6P'
    and event_type = 'create'
    ),

    overtime as (
    select
    date_trunc('{{ period }}', block_timestamp) as date,
    count(distinct tx_id) as transactions,
    count(distinct creator) as creators,
    count(distinct token_address) as tokens_created
    from
    main
    group by 1
    ),

    new_creators as (
    select
    date_trunc('{{ period }}', min_date) as date,
    count(distinct creator) as new_creator
    from (
    select
    creator,
    min(block_timestamp)::date as min_date
    Last run: 3 months ago
    DATE
    TRANSACTIONS
    CREATORS
    TOKENS_CREATED
    NEW_CREATORS
    1
    2024-01-01 00:00:00.000172106172106
    2
    2024-02-01 00:00:00.00012797291279721
    3
    2024-03-01 00:00:00.00074691265367469126404
    4
    2024-04-01 00:00:00.000286327149599286327145522
    5
    2024-05-01 00:00:00.000436918280774436918272474
    6
    2024-06-01 00:00:00.000386353275725386354265226
    7
    2024-07-01 00:00:00.000393622252709393622242651
    8
    2024-08-01 00:00:00.000344068172112344068162109
    9
    2024-09-01 00:00:00.000248400121677248400113062
    10
    2024-10-01 00:00:00.000704300311029704300295543
    11
    2024-11-01 00:00:00.00012481315533851248131523808
    12
    2024-12-01 00:00:00.00012079016144661207901580307
    13
    2025-01-01 00:00:00.00017274908448891727508794176
    14
    2025-02-01 00:00:00.00010692704166771069318373841
    14
    767B
    30s