SYMBOL | CONTRACT | USERS | SUPPLY | ROUND | |
---|---|---|---|---|---|
1 | PolyDoge | 0x8a953cfe442c5e8855cc6c61b1293fa648bae472 | 259921 | 1000000000000000 | 4 |
2 | XENX | 0x0f29965ca5f1111b073efa37a739dd2fafab11e0 | 21 | 19000000000 | 1 |
3 | NEUS | 0x1d9ccbe51cc6b4deeeca686d409561cf9f801fbc | 73 | 1000000000 | 1 |
4 | KIRANA | 0xfec68cbf04f7c069628cf9e9c609abc95f9a476b | 73 | 1000000000 | 1 |
5 | GONE | 0x162539172b53e9a93b7d98fb6c41682de558a320 | 22952 | 69339169410 | 1 |
6 | IGS | 0xe302672798d12e7f68c783db2c2d5e6b48ccf3ce | 220 | 100000000 | 1 |
7 | DONR2D2 | 0x97b2cb568e0880b99cd16efc6edff5272aa02676 | 35 | 1000000000 | 3 |
8 | SPK | 0x313ef6965f7a94d8e13602a52734833b0d566f85 | 554 | 200000000 | 2 |
9 | LZR | 0x2fc359fc903040ac5d34ff9d50802e1fe0ced8fe | 47 | 1000000000 | 1 |
10 | MOS | 0x572e6feff8cf6ef5ce9bcd3dde4ac1343f681d91 | 74 | 200000000 | 2 |
11 | DOPE | 0x0517c158eba9ac34961b958686a45e52a221df39 | 20 | 1000000000 | 1 |
12 | FYI | 0xa4c5ac734d05dbc97d5934f4b9c21f1859021511 | 26 | 1000000000 | 2 |
13 | HIN | 0xaf3b9202f8b324830d9b6c4ddfb447a0ba7f7fc5 | 14 | 999999999 | 1 |
14 | KC | 0x784665471bb8b945b57a76a9200b109ee214e789 | 5840 | 979098309.939419 | 1 |
15 | DHG | 0x75c0a194cd8b4f01d5ed58be5b7c5b61a9c69d0a | 153 | 100000000 | 1 |
16 | GRANTS | 0xdb7a2607b71134d0b09c27ca2d77b495e4dbeedb | 126 | 1000000000 | 2 |
17 | UNT | 0x4538727d7198e06019986bf2e1f562b5efdca909 | 72 | 200000000 | 2 |
18 | BORGER | 0x90880ee788963585525241bac32e7c99c3d0630f | 16883 | 10000000000 | 1 |
19 | NOMAD | 0xd7b0c417365b63f098c1c4ad2ced35982d648876 | 64 | 1000000000 | 1 |
20 | ACHAD | 0xa1a78ac9884adc9d04d59b2b743f1ec709618e55 | 52 | 6812690.19576794 | 4 |
MoDeFiGPC - tokens holders and supply
Updated 2025-05-15
99
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
›
⌄
with tokens_data as (
select *
from $query('75f58bb3-b2cd-4208-85e9-e3d75d901a1c')),
holders as (
select * from
(select user, contract, sum(amount) as balance
from
(
select from_address as user, -RAW_AMOUNT_PRECISE as amount, tx_hash, contract
from polygon.core.fact_token_transfers
join tokens_data b
on contract=CONTRACT_ADDRESS
where BLOCK_TIMESTAMP::date>=start_date
union all
select to_address, RAW_AMOUNT_PRECISE, tx_hash, contract
from polygon.core.fact_token_transfers
join tokens_data
on contract=CONTRACT_ADDRESS
where BLOCK_TIMESTAMP::date>=start_date)
group by 1,2)
where balance>0
)
select b.symbol, a.contract, count(*) as users, sum(balance/pow(10, decimal)) as supply, round
from holders a
join tokens_data b
on a.contract=b.contract
where balance/pow(10, decimal)>=0.00000001
group by 1,2, round
Last run: 13 days agoAuto-refreshes every 1 hour
63
4KB
456s