Afonso_DiazTop Holders
    Updated 2025-03-30
    with

    pricet as (
    select
    price as token_price_usd
    from
    ronin.price.ez_prices_hourly
    where
    token_address = '0xf988f63bf26c3ed3fbf39922149e3e7b1e5c27cb'
    order by hour desc
    limit 1
    ),

    deposits as (
    select
    to_address as receiver,
    sum(amount) as volume
    from
    ronin.core.ez_token_transfers
    where
    contract_address = '0xf988f63bf26c3ed3fbf39922149e3e7b1e5c27cb'
    group by 1
    ),

    withdraws as (
    select
    from_address as sender,
    sum(amount) as volume
    from
    ronin.core.ez_token_transfers
    where
    contract_address = '0xf988f63bf26c3ed3fbf39922149e3e7b1e5c27cb'
    group by 1
    ),

    main as (
    QueryRunArchived: QueryRun has been archived