Address | Label | Balance | |
---|---|---|---|
1 | 0x717d06b4d8bc6b71d5a2c45d8cc417930aec073d | traderjoe | 0.09366438 |
2 | 0xe90a36233e8e4fa4f975d3caf7aaa3e9578684e2 | binance | 0.08532117 |
3 | 0x86355f02119bdbc28ed6a4d5e0ca327ca7730fff | 0.05940024 | |
4 | 0x31c762db760ab75b18fa20e1614d4ee2704158af | 0.03874508 | |
5 | 0x9fc6cd1a8ebc2d40c43906b1e698a0460260efea | 0.03784364 | |
6 | 0x2cc69abbe6303e2b6973b52c1b1db1a2afaa4c34 | 0.03428561 | |
7 | 0x4e419f831ef010bf5990e0742865d4f798a9fa89 | 0.0269946 | |
8 | 0x545f78a51fd98a6bc1e556341200a51236b6d93c | 0.01987237 | |
9 | 0x8f8d2d2565bfb10608a7ce64b48e2aea7875a344 | 0.01902511 | |
10 | 0xb6f6d86a8f9879a9c87f643768d9efc38c1da6e7 | wormhole | 0.01898758 |
11 | 0x4b60fb97ed215cd116a9c83188d543f203b452a3 | 0.01866791 | |
12 | 0x9b3620ef27002db4df24ae136a2d98cadbc6e15c | 0.01736716 | |
13 | 0x57cb90b3b78a4c06a5c844b0676b40fcf6238ca1 | 0.01668637 | |
14 | 0x00affe9e9e4d8127214f4ee9a3fda8c5444dac8c | 0.01631057 | |
15 | 0x0a776abbaae0e2161d0e131f57e605efbea4b99b | 0.009998 | |
16 | 0x733b9d2871e20d84161f6df135b171185af7d3d9 | 0.00996815 | |
17 | 0x9571cc9fa275776dbdb2241ddfbd34d15f24a36a | binance | 0.00874388 |
18 | 0xa5a3d1fc3ecb98de1852ec035397434c7e934833 | 0.00816522 | |
19 | 0x7c0629bbbaf7d68ffaa393e3fedc9b633679fa5f | 0.00785881 | |
20 | 0x5aab0a4fb631d6b8abdd1fc4ce36dc59eabff1ca | binance | 0.00774662 |
alitaslimiBSC | List of BTC.b Top Holders
Updated 2025-02-19
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
transfers as (
select
to_address as address,
sum(amount) as volume
from
bsc.core.ez_token_transfers
where
contract_address = '0x2297aebd383787a160dd0d9f71508148769342e3'
group by
address
union all
select
from_address as address,
-sum(amount) as volume
from
bsc.core.ez_token_transfers
where
contract_address = '0x2297aebd383787a160dd0d9f71508148769342e3'
group by
address
)
select
transfers.address as "Address",
labels.project_name as "Label",
sum(transfers.volume) as "Balance"
from
transfers
left join bsc.core.dim_labels labels on transfers.address = labels.address
where
transfers.address != '0x0000000000000000000000000000000000000000'
group by
"Address",
"Label"
having
"Balance" > 0
Last run: about 2 months ago
100
6KB
67s