SYMBOL | CONTRACT | AVG_CONTRACTS | MED_CONTRACTS | |
---|---|---|---|---|
1 | CHAI | 0x6f75b5b0d58b36e1c71e6132e2896414b2007b04 | 159.15 | 32 |
2 | LZR | 0x2fc359fc903040ac5d34ff9d50802e1fe0ced8fe | 98.41 | 30 |
3 | UNT | 0x4538727d7198e06019986bf2e1f562b5efdca909 | 59.39 | 25.5 |
4 | SUPPLAI | 0x15987d862fbc435ac8445e809ebb377fb418ef8e | 126.34 | 44.5 |
5 | BONSAI | 0x3d2bd0e15829aa5c362a4144fdf4a1112fa29b5c | 104.77 | 29 |
6 | TFI | 0x12322531e5d0bba8f6218d28c8a2b586245d0a32 | 2 | 2 |
7 | MOS | 0x572e6feff8cf6ef5ce9bcd3dde4ac1343f681d91 | 127.74 | 30 |
8 | BORGER | 0x90880ee788963585525241bac32e7c99c3d0630f | 64.33 | 23 |
9 | NOCAP | 0xc1404a86d2c3a00a4946ee3289c6b238257be700 | 122.88 | 31 |
10 | GC | 0x8248bbf4b8595eea60ee73ed8ef2765ae4b68fb2 | 102.22 | 28 |
11 | PAWL | 0xb6ab4a4b329435094907190b541f4bd92f14ebe6 | 144.72 | 39 |
12 | XENX | 0x0f29965ca5f1111b073efa37a739dd2fafab11e0 | 3.14 | 0 |
13 | DDD | 0x4bf82cf0d6b2afc87367052b793097153c859d38 | 77.27 | 21 |
14 | CHMP | 0x2213dde228f71f9d4fc7ac78bd0fa1aed6ff1f94 | 9.5 | 9.5 |
15 | AGTRAMON | 0xd00d2bcc83126adbd086a855531451ffb0373db9 | 52.21 | 6 |
16 | IGS | 0xe302672798d12e7f68c783db2c2d5e6b48ccf3ce | 77.73 | 16 |
17 | DONR2D2 | 0x97b2cb568e0880b99cd16efc6edff5272aa02676 | 96.76 | 20 |
18 | JOBS | 0xd376cfc6baba795f8ce6e18b623ca0b6a227329d | 113.38 | 33 |
19 | KC | 0x784665471bb8b945b57a76a9200b109ee214e789 | 679.43 | 8 |
20 | NOMAD | 0xd7b0c417365b63f098c1c4ad2ced35982d648876 | 133.66 | 34 |
MoDeFiGPC - tokens trades week 4 contracts
Updated 2025-04-08
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
33
34
35
36
›
⌄
with tokens_data as (
select *
from $query('75f58bb3-b2cd-4208-85e9-e3d75d901a1c')),
tokens_pool as (
select *
from $query('998239b1-00be-4fa2-8c02-617cd563917c')
),
holders as (
select a.*, case when pool_address is not null then 'Pool' when user in (select address from polygon.core.dim_contracts) then 'Contract' end as tag,
row_number() over (partition by contract order by case when tag is null then 0 else 1 end, balance desc) as rank,
row_number() over (partition by contract order by case when tag='Contract' or tag is null then 0 else 1 end, balance desc) as rank_with_contracts
from
(select user, symbol, a.contract, sum(amount/pow(10, decimal)) 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
and BLOCK_TIMESTAMP<date_trunc(hour, '2025-04-04 18:00:00.000'::timestamp)
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
and BLOCK_TIMESTAMP<date_trunc(hour, '2025-04-04 18:00:00.000'::timestamp)
) a
join tokens_data b
on a.contract=b.contract
group by 1,2,3) a
left join tokens_pool
on user=pool_address
Last run: 20 days ago
63
4KB
2s