Yousefi_1994EUROC Holders Over Time
    Updated 2023-08-19
    with
    euroc_transfers_from as (
    select
    block_timestamp,
    from_address as address,
    raw_amount * pow(10, -6) * -1 as amount
    from
    avalanche.core.ez_token_transfers
    where
    contract_address = '0xc891eb4cbdeff6e073e859e987815ed1505c2acd'
    ),
    euroc_transfers_to as (
    select
    block_timestamp,
    to_address as address,
    raw_amount * pow(10, -6) as amount
    from
    avalanche.core.ez_token_transfers
    where
    contract_address = '0xc891eb4cbdeff6e073e859e987815ed1505c2acd'
    ),
    euroc_all_transfers as (
    select
    *
    from
    euroc_transfers_from
    union all
    select
    *
    from
    euroc_transfers_to
    ),
    euroc_result_1 as (
    select
    date_trunc('day', block_timestamp) as days,
    address,
    Run a query to Download Data