eth-chainlist 0.0.792 → 0.0.794
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +16 -0
- package/data/chain.js +97 -25
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
### 0.0.794 (2026-07-25)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Maintenance
|
|
7
|
+
|
|
8
|
+
* **release:** 0.0.793 ([5818505](https://github.com/poowf/eth-chainlist/commit/58185056eb04a5b505de53b8da77667b66990d7c))
|
|
9
|
+
* update chain data ([9b7de1b](https://github.com/poowf/eth-chainlist/commit/9b7de1b92c7a2d81f41b42ad3a5c301374da89f4))
|
|
10
|
+
|
|
11
|
+
### 0.0.793 (2026-07-18)
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
### Maintenance
|
|
15
|
+
|
|
16
|
+
* **release:** 0.0.792 ([2705ef5](https://github.com/poowf/eth-chainlist/commit/2705ef5dfb5c481e2a7f5063d8c84c12d712e833))
|
|
17
|
+
* update chain data ([51448e8](https://github.com/poowf/eth-chainlist/commit/51448e83f4dade1ef6d31b402b1c4232381fd849))
|
|
18
|
+
|
|
3
19
|
### 0.0.792 (2026-07-12)
|
|
4
20
|
|
|
5
21
|
|
package/data/chain.js
CHANGED
|
@@ -18667,6 +18667,26 @@ const chainArray = [
|
|
|
18667
18667
|
}
|
|
18668
18668
|
]
|
|
18669
18669
|
},
|
|
18670
|
+
{
|
|
18671
|
+
name: 'AERE Network',
|
|
18672
|
+
chain: 'AERE',
|
|
18673
|
+
icon: 'aere',
|
|
18674
|
+
rpc: [ 'https://rpc.aere.network', 'https://rpc2.aere.network' ],
|
|
18675
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
|
18676
|
+
faucets: [],
|
|
18677
|
+
nativeCurrency: { name: 'AERE', symbol: 'AERE', decimals: 18 },
|
|
18678
|
+
infoURL: 'https://aere.network',
|
|
18679
|
+
shortName: 'aere',
|
|
18680
|
+
chainId: 2800,
|
|
18681
|
+
networkId: 2800,
|
|
18682
|
+
explorers: [
|
|
18683
|
+
{
|
|
18684
|
+
name: 'AERE Explorer',
|
|
18685
|
+
url: 'https://explorer.aere.network',
|
|
18686
|
+
standard: 'EIP3091'
|
|
18687
|
+
}
|
|
18688
|
+
]
|
|
18689
|
+
},
|
|
18670
18690
|
{
|
|
18671
18691
|
name: 'Morph Holesky',
|
|
18672
18692
|
title: 'Morph Holesky Testnet',
|
|
@@ -21298,30 +21318,30 @@ const chainArray = [
|
|
|
21298
21318
|
},
|
|
21299
21319
|
{
|
|
21300
21320
|
name: 'MemeCore',
|
|
21301
|
-
title: 'MemeCore',
|
|
21321
|
+
title: 'MemeCore Mainnet',
|
|
21302
21322
|
chain: 'MemeCore',
|
|
21303
21323
|
icon: 'memecore',
|
|
21304
21324
|
rpc: [ 'https://rpc.memecore.net', 'wss://ws.memecore.net' ],
|
|
21305
21325
|
nativeCurrency: { name: 'M', symbol: 'M', decimals: 18 },
|
|
21306
|
-
features: [
|
|
21326
|
+
features: [
|
|
21327
|
+
{ name: 'EIP155' },
|
|
21328
|
+
{ name: 'EIP1559' },
|
|
21329
|
+
{ name: 'EIP4844' },
|
|
21330
|
+
{ name: 'EIP7702' }
|
|
21331
|
+
],
|
|
21307
21332
|
faucets: [],
|
|
21308
21333
|
infoURL: 'https://memecore.com',
|
|
21309
21334
|
shortName: 'm',
|
|
21310
21335
|
chainId: 4352,
|
|
21311
21336
|
networkId: 4352,
|
|
21312
21337
|
explorers: [
|
|
21313
|
-
{
|
|
21314
|
-
name: 'OKX-MemeCore',
|
|
21315
|
-
url: 'https://www.okx.com/web3/explorer/memecore',
|
|
21316
|
-
standard: 'EIP3091'
|
|
21317
|
-
},
|
|
21318
21338
|
{
|
|
21319
21339
|
name: 'MemeCoreScan',
|
|
21320
21340
|
url: 'https://memecorescan.io',
|
|
21321
21341
|
standard: 'EIP3091'
|
|
21322
21342
|
},
|
|
21323
21343
|
{
|
|
21324
|
-
name: '
|
|
21344
|
+
name: 'Blockscout',
|
|
21325
21345
|
url: 'https://blockscout.memecore.com',
|
|
21326
21346
|
standard: 'EIP3091'
|
|
21327
21347
|
}
|
|
@@ -35481,6 +35501,7 @@ const chainArray = [
|
|
|
35481
35501
|
name: 'Formicarium',
|
|
35482
35502
|
title: 'MemeCore Testnet Formicarium',
|
|
35483
35503
|
chain: 'MemeCore',
|
|
35504
|
+
status: 'deprecated',
|
|
35484
35505
|
icon: 'memecore',
|
|
35485
35506
|
rpc: [
|
|
35486
35507
|
'https://rpc.formicarium.memecore.net',
|
|
@@ -35493,21 +35514,39 @@ const chainArray = [
|
|
|
35493
35514
|
shortName: 'form',
|
|
35494
35515
|
chainId: 43521,
|
|
35495
35516
|
networkId: 43521,
|
|
35517
|
+
slip44: 1
|
|
35518
|
+
},
|
|
35519
|
+
{
|
|
35520
|
+
name: 'Insectarium',
|
|
35521
|
+
title: 'Insectarium Testnet',
|
|
35522
|
+
chain: 'MemeCore',
|
|
35523
|
+
icon: 'memecore',
|
|
35524
|
+
rpc: [
|
|
35525
|
+
'https://rpc.insectarium.memecore.net',
|
|
35526
|
+
'wss://ws.insectarium.memecore.net'
|
|
35527
|
+
],
|
|
35528
|
+
faucets: [ 'https://faucet.memecore.com/insectarium' ],
|
|
35529
|
+
nativeCurrency: { name: 'Insectarium M', symbol: 'M', decimals: 18 },
|
|
35530
|
+
features: [
|
|
35531
|
+
{ name: 'EIP155' },
|
|
35532
|
+
{ name: 'EIP1559' },
|
|
35533
|
+
{ name: 'EIP4844' },
|
|
35534
|
+
{ name: 'EIP7702' }
|
|
35535
|
+
],
|
|
35536
|
+
infoURL: 'https://memecore.com',
|
|
35537
|
+
shortName: 'insectarium',
|
|
35538
|
+
chainId: 43522,
|
|
35539
|
+
networkId: 43522,
|
|
35496
35540
|
slip44: 1,
|
|
35497
35541
|
explorers: [
|
|
35498
35542
|
{
|
|
35499
|
-
name: '
|
|
35500
|
-
url: 'https://
|
|
35501
|
-
standard: 'EIP3091'
|
|
35502
|
-
},
|
|
35503
|
-
{
|
|
35504
|
-
name: 'MemeCoreScan-Formicarium',
|
|
35505
|
-
url: 'https://formicarium.memecorescan.io',
|
|
35543
|
+
name: 'MemeCoreScan-Insectarium',
|
|
35544
|
+
url: 'https://insectarium.memecorescan.io',
|
|
35506
35545
|
standard: 'EIP3091'
|
|
35507
35546
|
},
|
|
35508
35547
|
{
|
|
35509
|
-
name: '
|
|
35510
|
-
url: 'https://
|
|
35548
|
+
name: 'Blockscout-Insectarium',
|
|
35549
|
+
url: 'https://insectarium.blockscout.memecore.com',
|
|
35511
35550
|
standard: 'EIP3091'
|
|
35512
35551
|
}
|
|
35513
35552
|
]
|
|
@@ -41353,15 +41392,24 @@ const chainArray = [
|
|
|
41353
41392
|
slip44: 1
|
|
41354
41393
|
},
|
|
41355
41394
|
{
|
|
41356
|
-
name: '
|
|
41357
|
-
|
|
41358
|
-
|
|
41359
|
-
|
|
41360
|
-
|
|
41361
|
-
|
|
41362
|
-
|
|
41395
|
+
name: 'ADI Network AB Testnet',
|
|
41396
|
+
title: 'ADI Network AB Testnet (prev. UB Smart Chain)',
|
|
41397
|
+
chain: 'ADI',
|
|
41398
|
+
rpc: [ 'https://rpc.ab.testnet.adifoundation.ai/' ],
|
|
41399
|
+
faucets: [ 'http://faucet.ab.testnet.adifoundation.ai/' ],
|
|
41400
|
+
nativeCurrency: { name: 'ADI', symbol: 'ADI', decimals: 18 },
|
|
41401
|
+
infoURL: 'https://docs.adi.foundation',
|
|
41402
|
+
shortName: 'adi-testnet',
|
|
41363
41403
|
chainId: 99999,
|
|
41364
|
-
networkId: 99999
|
|
41404
|
+
networkId: 99999,
|
|
41405
|
+
explorers: [
|
|
41406
|
+
{
|
|
41407
|
+
name: 'ADI Testnet Explorer',
|
|
41408
|
+
url: 'https://explorer.ab.testnet.adifoundation.ai',
|
|
41409
|
+
standard: 'EIP3091'
|
|
41410
|
+
}
|
|
41411
|
+
],
|
|
41412
|
+
redFlags: [ 'reusedChainId' ]
|
|
41365
41413
|
},
|
|
41366
41414
|
{
|
|
41367
41415
|
name: 'QuarkChain Mainnet Root',
|
|
@@ -44401,6 +44449,7 @@ const chainArray = [
|
|
|
44401
44449
|
},
|
|
44402
44450
|
{
|
|
44403
44451
|
name: 'HIPERCAPITAL FINANCE Chain',
|
|
44452
|
+
icon: 'hipercapital',
|
|
44404
44453
|
chain: 'HIPCF',
|
|
44405
44454
|
rpc: [ 'https://rpc.hipercapitalfinance.com' ],
|
|
44406
44455
|
features: [ { name: 'EIP155' } ],
|
|
@@ -53083,6 +53132,29 @@ const chainArray = [
|
|
|
53083
53132
|
}
|
|
53084
53133
|
]
|
|
53085
53134
|
},
|
|
53135
|
+
{
|
|
53136
|
+
name: 'iTani Network Chain',
|
|
53137
|
+
chain: 'ITANI',
|
|
53138
|
+
rpc: [
|
|
53139
|
+
'https://rpc.itaninetworkchain.com/jsonrpc',
|
|
53140
|
+
'https://node.itaninetworkchain.com/jsonrpc'
|
|
53141
|
+
],
|
|
53142
|
+
features: [ { name: 'EIP155' } ],
|
|
53143
|
+
faucets: [],
|
|
53144
|
+
nativeCurrency: { name: 'iTani', symbol: 'ITANI', decimals: 18 },
|
|
53145
|
+
infoURL: 'https://www.itaninetworkchain.com',
|
|
53146
|
+
shortName: 'itani',
|
|
53147
|
+
chainId: 1229800785,
|
|
53148
|
+
networkId: 1229800785,
|
|
53149
|
+
explorers: [
|
|
53150
|
+
{
|
|
53151
|
+
name: 'iTani Explorer',
|
|
53152
|
+
url: 'https://explorer.itaninetworkchain.com',
|
|
53153
|
+
standard: 'EIP3091'
|
|
53154
|
+
}
|
|
53155
|
+
],
|
|
53156
|
+
icon: 'itani'
|
|
53157
|
+
},
|
|
53086
53158
|
{
|
|
53087
53159
|
name: 'HUMAN Protocol',
|
|
53088
53160
|
title: 'HUMAN Protocol',
|