MajorM11101_get nouveau token copy copy
    Updated 2024-11-05
    -- forked from 01_get nouveau token copy @ https://flipsidecrypto.xyz/studio/queries/30ef8e6f-901a-4a74-98a2-b8f47238c298

    -- forked from 01_get nouveau token @ https://flipsidecrypto.xyz/studio/queries/41ed0731-adb9-408f-a1ce-b2d1119a77c5

    SELECT
    t1.block_id,
    t1.block_timestamp,
    t1.tx_id,
    t1.index,
    t1.inner_index,
    t1.succeeded,
    t1.event_type,
    t1.mint as token_address,
    t1.mint_authority,
    t1.inserted_timestamp
    FROM solana.defi.fact_token_mint_actions AS t1
    WHERE t1.succeeded = 'TRUE'
    AND t1.event_type = 'initializeMint2'
    AND t1.mint_authority = 'TSLvdd1pWpHVjahSpsvCXUbgwsL3JAcvokwaKt1eokM' -- pump.fun Token Mint Authority
    --AND t1.block_id = '299488189'
    --AND t1.block_timestamp BETWEEN '2024-11-04 00:00:00.000' AND '2024-11-04 23:59:59.000'
    ORDER BY t1.block_id DESC
    LIMIT 5;



    QueryRunArchived: QueryRun has been archived