rezarwzWhat tokens do they usually receive in the first transactions?
    Updated 2023-05-16
    with swap_users as(
    SELECT
    BLOCK_TIMESTAMP,
    ORIGIN_FROM_ADDRESS as user_wallet_address,
    'swapping' as EVENT_NAME,
    AMOUNT_IN_USD,
    AMOUNT_OUT_USD,
    PLATFORM,
    SYMBOL_IN,
    SYMBOL_out,
    RANK() OVER (partition by ORIGIN_FROM_ADDRESS order by BLOCK_TIMESTAMP asc)as rank
    FROM ethereum.core.ez_dex_swaps
    where platform in ('uniswap-v2','uniswap-v3'))
    SELECT
    sum(AMOUNT_OUT_USD) as volume,
    count(DISTINCT user_wallet_address) as number,
    SYMBOL_out
    FROM swap_users
    WHERE rank=1 and AMOUNT_OUT_USD is not null and BLOCK_TIMESTAMP>=current_date-365
    GROUP BY SYMBOL_out
    order by volume DESC
    Run a query to Download Data