hrst79rank
    Updated 2 days ago
    with
    pump_tokens as (
    select
    DISTINCT decoded_instruction:args:symbol::varchar as symbol,
    Decoded_instruction:accounts [0] :pubkey :: string as address
    from
    solana.core.fact_decoded_instructions
    where
    program_id ='6EF8rrecthR5Dkzon8Nwu78hRvfCKubJ14M5uBEwF6P'
    and event_type = 'create'
    and block_timestamp >= '2024-01-14'
    ),
    traders as (
    SELECT
    DISTINCT signers[0] as swapper,
    FROM
    solana.core.fact_decoded_instructions
    WHERE
    program_id = '6EF8rrecthR5Dkzon8Nwu78hRvfCKubJ14M5uBEwF6P'
    and block_timestamp >= '2024-01-14'
    )
    ,

    pre_final as (
    SELECT
    DISTINCT swapper,
    'buy' as action,
    swap_to_mint as token_Address,
    swap_from_amount_usd as amount
    from
    solana.defi.ez_dex_swaps a join pump_tokens b on a.swap_to_mint = b.address
    where
    a.program_id = '6EF8rrecthR5Dkzon8Nwu78hRvfCKubJ14M5uBEwF6P'
    and swap_from_symbol = 'SOL'
    and swap_to_symbol is NULL
    and swapper in (select swapper from traders)
    Last run: about 11 hours ago
    AMOUNT_USD
    RANK
    YOU_ARE_IN
    TOTAL_USERS
    1
    461518.53109950.058918672601
    1
    35B
    101s