DATE | HOLDING | PERCENTAGE | |
---|---|---|---|
1 | 2025-04-17 00:00:00.000 | 81901941.1438186 | 98.822149514 |
2 | 2025-04-16 00:00:00.000 | 81845662.8223736 | 98.797845301 |
3 | 2025-04-15 00:00:00.000 | 81799175.2729331 | 98.783730512 |
4 | 2025-04-14 00:00:00.000 | 81705256.4295367 | 98.721201194 |
5 | 2025-04-13 00:00:00.000 | 81691098.2876573 | 98.730947443 |
6 | 2025-04-12 00:00:00.000 | 81670246.8297243 | 98.726040895 |
7 | 2025-04-11 00:00:00.000 | 81452585.5362634 | 98.500289512 |
8 | 2025-04-10 00:00:00.000 | 81387557.8200464 | 98.452269124 |
9 | 2025-04-09 00:00:00.000 | 81255361.3728728 | 98.408313491 |
10 | 2025-04-08 00:00:00.000 | 81193071.7632973 | 98.414948729 |
11 | 2025-04-07 00:00:00.000 | 81044505.3587998 | 98.503051129 |
12 | 2025-04-06 00:00:00.000 | 80942529.2453252 | 98.573884895 |
13 | 2025-04-05 00:00:00.000 | 80829232.0170435 | 98.47214489 |
14 | 2025-04-04 00:00:00.000 | 79839874.518993 | 97.423430806 |
15 | 2025-04-03 00:00:00.000 | 79770178.6310478 | 97.581831237 |
16 | 2025-04-02 00:00:00.000 | 87500000 | 100 |
17 | 2025-04-01 00:00:00.000 | 93750000 | 100 |
18 | 2025-03-31 00:00:00.000 | 93750000 | 100 |
19 | 2025-03-30 00:00:00.000 | 93750000 | 100 |
20 | 2025-03-29 00:00:00.000 | 93750000 | 100 |
Ali3NDately $JACK Holders / Circulating Supply Over Time
Updated 4 hours ago
999
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
›
⌄
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
24
1KB
32s