Yousefi_1994ECO- Top 100 ECO Holders
    Updated 2023-07-23
    with
    eco_transfers_from as (
    select
    from_address as address,
    - sum(raw_amount) * pow(10, -18) as amount
    from
    ethereum.core.ez_token_transfers
    where
    contract_address = '0x8dbf9a4c99580fc7fd4024ee08f3994420035727'
    group by
    1
    ),
    eco_transfers_to as (
    select
    to_address as address,
    sum(raw_amount) * pow(10, -18) as amount
    from
    ethereum.core.ez_token_transfers
    where
    contract_address = '0x8dbf9a4c99580fc7fd4024ee08f3994420035727'
    group by
    1
    ),
    eco_all_transfers as (
    select
    *
    from
    eco_transfers_from
    union all
    select
    *
    from
    eco_transfers_to
    ),
    eco_total_amount_transfers as (
    select
    Run a query to Download Data