CONTRACT | USERS | TRANSACTIONS | |
---|---|---|---|
1 | layer3 cube | 34880 | 309238 |
2 | wrapped ether | 54302 | 258936 |
3 | stargate | 56130 | 149548 |
4 | rebasing ink staked eth | 46278 | 84017 |
5 | hanft | 20285 | 59795 |
6 | ink staked eth | 27432 | 54242 |
7 | usd₮0 | 22967 | 43267 |
8 | zns connect | 39684 | 41702 |
9 | uniswap v3 positions nft-v1 | 28384 | 39750 |
10 | slipstream position nft v1.2 | 11899 | 28639 |
11 | nfts2me owners | 19504 | 24623 |
12 | ionic wrapped ether | 7949 | 21011 |
13 | guild pin | 19474 | 19515 |
14 | andru kollor | 9354 | 12600 |
15 | cat call agent | 7324 | 10301 |
16 | pearl | 7468 | 10180 |
17 | kraken | 5814 | 7644 |
18 | inkyagent | 4414 | 5657 |
19 | bronze supporter pin | 4257 | 4836 |
20 | we are going to make ink | 2100 | 2851 |
MasiTop Contracts by iETH Addresses
Updated 2025-03-08
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
›
⌄
with tb0 as ( select trunc(hour,'day') as day,
avg(price) as price
from crosschain.price.ez_prices_hourly
where token_address = lower('0xc383a3833a87009fd9597f8184979af5edfad019')
and day = current_date - 1
group by 1)
,
tb1 as (select distinct origin_from_address
from ink.core.ez_token_transfers
where from_address = '0x0000000000000000000000000000000000000000'
and contract_address = '0x11476323d8dfcbafac942588e2f38823d2dd308e'
)
select
ifnull(label,to_address) as Contract,
count(distinct from_address) as users,
count(distinct tx_hash) as transactions
from ink.core.fact_transactions a join ink.core.dim_labels b on a.to_address = b.address
group by 1
order by 3 desc
limit 30
Last run: about 2 months ago
30
925B
3s