ben-wyattfind-high-tx
    Updated 2025-02-03
    -- select *,
    -- FROM avalanche.core.ez_token_transfers
    -- where amount_usd is not null
    -- order by amount_usd desc
    -- limit 10

    select *
    from
    (
    select amount_usd, block_timestamp, symbol
    FROM ethereum.core.ez_token_transfers
    where amount_usd > 1e15
    union all
    select amount_usd, block_timestamp, 'AVAX' as symbol
    FROM ethereum.core.ez_native_transfers
    where amount_usd > 1e15)
    order by amount_usd desc

    QueryRunArchived: QueryRun has been archived