alitaslimiHolders Overview
    Updated 2025-02-19
    with
    -------------------- Arbitrum --------------------
    arbitrum_transfers as (
    select
    to_address as address,
    sum(amount) as volume
    from
    arbitrum.core.ez_token_transfers
    where
    contract_address = '0x2297aebd383787a160dd0d9f71508148769342e3'
    group by
    address
    union all
    select
    from_address as address,
    -sum(amount) as volume
    from
    arbitrum.core.ez_token_transfers
    where
    contract_address = '0x2297aebd383787a160dd0d9f71508148769342e3'
    group by
    address
    ),
    arbitrum as (
    select
    address,
    sum(volume) as balance
    from
    arbitrum_transfers
    where
    address != '0x0000000000000000000000000000000000000000'
    group by
    address
    having
    balance > 0
    ),
    Last run: 25 days ago
    Total Holders
    1
    604334
    1
    10B
    113s