eth-chainlist 0.0.793 → 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 +8 -0
- package/data/chain.js +77 -25
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
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
|
+
|
|
3
11
|
### 0.0.793 (2026-07-18)
|
|
4
12
|
|
|
5
13
|
|
package/data/chain.js
CHANGED
|
@@ -21318,30 +21318,30 @@ const chainArray = [
|
|
|
21318
21318
|
},
|
|
21319
21319
|
{
|
|
21320
21320
|
name: 'MemeCore',
|
|
21321
|
-
title: 'MemeCore',
|
|
21321
|
+
title: 'MemeCore Mainnet',
|
|
21322
21322
|
chain: 'MemeCore',
|
|
21323
21323
|
icon: 'memecore',
|
|
21324
21324
|
rpc: [ 'https://rpc.memecore.net', 'wss://ws.memecore.net' ],
|
|
21325
21325
|
nativeCurrency: { name: 'M', symbol: 'M', decimals: 18 },
|
|
21326
|
-
features: [
|
|
21326
|
+
features: [
|
|
21327
|
+
{ name: 'EIP155' },
|
|
21328
|
+
{ name: 'EIP1559' },
|
|
21329
|
+
{ name: 'EIP4844' },
|
|
21330
|
+
{ name: 'EIP7702' }
|
|
21331
|
+
],
|
|
21327
21332
|
faucets: [],
|
|
21328
21333
|
infoURL: 'https://memecore.com',
|
|
21329
21334
|
shortName: 'm',
|
|
21330
21335
|
chainId: 4352,
|
|
21331
21336
|
networkId: 4352,
|
|
21332
21337
|
explorers: [
|
|
21333
|
-
{
|
|
21334
|
-
name: 'OKX-MemeCore',
|
|
21335
|
-
url: 'https://www.okx.com/web3/explorer/memecore',
|
|
21336
|
-
standard: 'EIP3091'
|
|
21337
|
-
},
|
|
21338
21338
|
{
|
|
21339
21339
|
name: 'MemeCoreScan',
|
|
21340
21340
|
url: 'https://memecorescan.io',
|
|
21341
21341
|
standard: 'EIP3091'
|
|
21342
21342
|
},
|
|
21343
21343
|
{
|
|
21344
|
-
name: '
|
|
21344
|
+
name: 'Blockscout',
|
|
21345
21345
|
url: 'https://blockscout.memecore.com',
|
|
21346
21346
|
standard: 'EIP3091'
|
|
21347
21347
|
}
|
|
@@ -35501,6 +35501,7 @@ const chainArray = [
|
|
|
35501
35501
|
name: 'Formicarium',
|
|
35502
35502
|
title: 'MemeCore Testnet Formicarium',
|
|
35503
35503
|
chain: 'MemeCore',
|
|
35504
|
+
status: 'deprecated',
|
|
35504
35505
|
icon: 'memecore',
|
|
35505
35506
|
rpc: [
|
|
35506
35507
|
'https://rpc.formicarium.memecore.net',
|
|
@@ -35513,21 +35514,39 @@ const chainArray = [
|
|
|
35513
35514
|
shortName: 'form',
|
|
35514
35515
|
chainId: 43521,
|
|
35515
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,
|
|
35516
35540
|
slip44: 1,
|
|
35517
35541
|
explorers: [
|
|
35518
35542
|
{
|
|
35519
|
-
name: '
|
|
35520
|
-
url: 'https://
|
|
35543
|
+
name: 'MemeCoreScan-Insectarium',
|
|
35544
|
+
url: 'https://insectarium.memecorescan.io',
|
|
35521
35545
|
standard: 'EIP3091'
|
|
35522
35546
|
},
|
|
35523
35547
|
{
|
|
35524
|
-
name: '
|
|
35525
|
-
url: 'https://
|
|
35526
|
-
standard: 'EIP3091'
|
|
35527
|
-
},
|
|
35528
|
-
{
|
|
35529
|
-
name: 'MemeCore Testnet Formicarium Explorer',
|
|
35530
|
-
url: 'https://formicarium.blockscout.memecore.com',
|
|
35548
|
+
name: 'Blockscout-Insectarium',
|
|
35549
|
+
url: 'https://insectarium.blockscout.memecore.com',
|
|
35531
35550
|
standard: 'EIP3091'
|
|
35532
35551
|
}
|
|
35533
35552
|
]
|
|
@@ -41373,15 +41392,24 @@ const chainArray = [
|
|
|
41373
41392
|
slip44: 1
|
|
41374
41393
|
},
|
|
41375
41394
|
{
|
|
41376
|
-
name: '
|
|
41377
|
-
|
|
41378
|
-
|
|
41379
|
-
|
|
41380
|
-
|
|
41381
|
-
|
|
41382
|
-
|
|
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',
|
|
41383
41403
|
chainId: 99999,
|
|
41384
|
-
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' ]
|
|
41385
41413
|
},
|
|
41386
41414
|
{
|
|
41387
41415
|
name: 'QuarkChain Mainnet Root',
|
|
@@ -44421,6 +44449,7 @@ const chainArray = [
|
|
|
44421
44449
|
},
|
|
44422
44450
|
{
|
|
44423
44451
|
name: 'HIPERCAPITAL FINANCE Chain',
|
|
44452
|
+
icon: 'hipercapital',
|
|
44424
44453
|
chain: 'HIPCF',
|
|
44425
44454
|
rpc: [ 'https://rpc.hipercapitalfinance.com' ],
|
|
44426
44455
|
features: [ { name: 'EIP155' } ],
|
|
@@ -53103,6 +53132,29 @@ const chainArray = [
|
|
|
53103
53132
|
}
|
|
53104
53133
|
]
|
|
53105
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
|
+
},
|
|
53106
53158
|
{
|
|
53107
53159
|
name: 'HUMAN Protocol',
|
|
53108
53160
|
title: 'HUMAN Protocol',
|