Updated 2025-02-26
    with

    main as (
    select
    tx_id,
    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'
    )

    select
    count(distinct tx_id) as transactions,
    count(distinct creator) as creators,
    count(distinct token_address) as tokens_created
    from
    main
    Last run: 2 months ago
    TRANSACTIONS
    CREATORS
    TOKENS_CREATED
    1
    812892237959508128989
    1
    27B
    28s