Ali3NDately $JACK Holders / Circulating Supply Over Time
    Updated 4 hours ago
    with receivet as (
    select date_trunc (day,block_timestamp) as date1,
    to_address as Wallet,
    coalesce (sum (amount),0) as Amount
    from avalanche.core.ez_token_transfers
    where contract_address ='0x3fe4902b275caf603c46c81f3d921bb8515b5bc0'
    group by 1,2),

    sendt as (
    select date_trunc (day,block_timestamp) as date1,
    from_address as Wallet,
    coalesce (sum (amount),0)*-1 as Amount
    from avalanche.core.ez_token_transfers
    where contract_address ='0x3fe4902b275caf603c46c81f3d921bb8515b5bc0'
    group by 1,2),

    holderst as (
    select distinct Wallet
    from (
    select Wallet,
    round(sum(Amount),0) as balance
    from (select * from sendt union all select * from receivet)
    group by 1)),

    datet1 as (
    select date_day
    from ethereum.core.dim_dates
    where date_day >= '2025-01-01' and date_day <= current_date
    group by date_day),

    table1 as (
    select *
    from datet1 cross join holderst),

    balance1 as (
    select date1,
    Last run: about 4 hours agoAuto-refreshes every 6 hours
    DATE
    HOLDING
    PERCENTAGE
    1
    2025-04-17 00:00:00.00081901941.143818698.822149514
    2
    2025-04-16 00:00:00.00081845662.822373698.797845301
    3
    2025-04-15 00:00:00.00081799175.272933198.783730512
    4
    2025-04-14 00:00:00.00081705256.429536798.721201194
    5
    2025-04-13 00:00:00.00081691098.287657398.730947443
    6
    2025-04-12 00:00:00.00081670246.829724398.726040895
    7
    2025-04-11 00:00:00.00081452585.536263498.500289512
    8
    2025-04-10 00:00:00.00081387557.820046498.452269124
    9
    2025-04-09 00:00:00.00081255361.372872898.408313491
    10
    2025-04-08 00:00:00.00081193071.763297398.414948729
    11
    2025-04-07 00:00:00.00081044505.358799898.503051129
    12
    2025-04-06 00:00:00.00080942529.245325298.573884895
    13
    2025-04-05 00:00:00.00080829232.017043598.47214489
    14
    2025-04-04 00:00:00.00079839874.51899397.423430806
    15
    2025-04-03 00:00:00.00079770178.631047897.581831237
    16
    2025-04-02 00:00:00.00087500000100
    17
    2025-04-01 00:00:00.00093750000100
    18
    2025-03-31 00:00:00.00093750000100
    19
    2025-03-30 00:00:00.00093750000100
    20
    2025-03-29 00:00:00.00093750000100
    24
    1KB
    32s