dethectivePumpfun creation trendline
    Updated 2025-03-26
    WITH creation_by_address AS (
    SELECT
    DATE(block_timestamp) AS datetime,
    tx_id,
    decoded_instruction:args:symbol :: VARCHAR AS symbol,
    decoded_instruction:accounts[0]:pubkey :: STRING AS token_address,
    signers[0] AS creator_address
    FROM solana.core.fact_decoded_instructions
    WHERE
    program_id = '6EF8rrecthR5Dkzon8Nwu78hRvfCKubJ14M5uBEwF6P'
    AND event_type = 'create'
    AND creator_address = '{{creator_address}}'
    )
    SELECT
    DATE_TRUNC('hour', datetime) AS hour_day,
    COUNT(token_address) AS deployed_token,
    SUM(COUNT(token_address)) OVER (ORDER BY DATE_TRUNC('hour', datetime)) AS cumulative_deployed_token
    FROM creation_by_address
    GROUP BY hour_day
    ORDER BY hour_day
    Last run: 3 months ago
    HOUR_DAY
    DEPLOYED_TOKEN
    CUMULATIVE_DEPLOYED_TOKEN
    1
    2024-11-06 00:00:00.0001010
    2
    2024-11-07 00:00:00.000147157
    3
    2024-11-08 00:00:00.000137294
    4
    2024-11-09 00:00:00.000102396
    5
    2024-11-10 00:00:00.00077473
    6
    2024-11-11 00:00:00.000173646
    7
    2024-11-12 00:00:00.000125771
    8
    2024-11-13 00:00:00.000182953
    9
    2024-11-14 00:00:00.000681021
    10
    2024-11-15 00:00:00.0002061227
    11
    2024-11-16 00:00:00.0001231350
    12
    2024-11-17 00:00:00.0001581508
    13
    2024-11-18 00:00:00.0002031711
    14
    2024-11-19 00:00:00.0001961907
    15
    2024-11-20 00:00:00.0001332040
    16
    2024-11-21 00:00:00.0001642204
    17
    2024-11-22 00:00:00.0001692373
    18
    2024-11-23 00:00:00.0001582531
    19
    2024-11-24 00:00:00.0001962727
    20
    2024-11-25 00:00:00.0001712898
    ...
    141
    5KB
    0s