eth-chainlist 0.0.637 → 0.0.638
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 +138 -35
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
### 0.0.638 (2025-03-13)
|
4
|
+
|
5
|
+
|
6
|
+
### Maintenance
|
7
|
+
|
8
|
+
* **release:** 0.0.637 ([a59d893](https://github.com/poowf/eth-chainlist/commit/a59d8933fc9ca3b90c4491b038fa936c0d09bd0c))
|
9
|
+
* update chain data ([c2113a7](https://github.com/poowf/eth-chainlist/commit/c2113a7e683c5bf05614371c01c9f9bbc7a0cce5))
|
10
|
+
|
3
11
|
### 0.0.637 (2025-03-12)
|
4
12
|
|
5
13
|
|
package/data/chain.js
CHANGED
@@ -16296,7 +16296,11 @@ const chainArray = [
|
|
16296
16296
|
{
|
16297
16297
|
name: '6Degree of Outreach',
|
16298
16298
|
chain: '6DO',
|
16299
|
-
rpc: [
|
16299
|
+
rpc: [
|
16300
|
+
'https://rpc.6dochain.com',
|
16301
|
+
'https://rpc2.6dochain.com',
|
16302
|
+
'https://rpc3.6dochain.com'
|
16303
|
+
],
|
16300
16304
|
faucets: [],
|
16301
16305
|
nativeCurrency: { name: '6Degree Coin', symbol: '6DO', decimals: 18 },
|
16302
16306
|
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
@@ -16308,7 +16312,7 @@ const chainArray = [
|
|
16308
16312
|
explorers: [
|
16309
16313
|
{
|
16310
16314
|
name: '6Degree Chain Explorer',
|
16311
|
-
url: 'https://explorer.
|
16315
|
+
url: 'https://explorer.6dochain.com',
|
16312
16316
|
standard: 'EIP3091'
|
16313
16317
|
}
|
16314
16318
|
]
|
@@ -21506,13 +21510,13 @@ const chainArray = [
|
|
21506
21510
|
]
|
21507
21511
|
},
|
21508
21512
|
{
|
21509
|
-
name: '
|
21513
|
+
name: 'MTT Network',
|
21510
21514
|
chain: 'MTT',
|
21511
21515
|
rpc: [ 'https://evm-rpc.mtt.network' ],
|
21512
21516
|
faucets: [],
|
21513
|
-
nativeCurrency: { name: '
|
21517
|
+
nativeCurrency: { name: 'MTT Network native coin', symbol: 'MTT', decimals: 18 },
|
21514
21518
|
infoURL: 'https://mtt.network',
|
21515
|
-
shortName: 'mtt-
|
21519
|
+
shortName: 'mtt-network',
|
21516
21520
|
chainId: 6880,
|
21517
21521
|
networkId: 6880,
|
21518
21522
|
icon: 'mttnetwork',
|
@@ -22576,6 +22580,27 @@ const chainArray = [
|
|
22576
22580
|
}
|
22577
22581
|
]
|
22578
22582
|
},
|
22583
|
+
{
|
22584
|
+
name: 'Powerloom Mainnet V2',
|
22585
|
+
chain: 'Powerloom Mainnet V2',
|
22586
|
+
rpc: [ 'https://rpc-v2.powerloom.network' ],
|
22587
|
+
faucets: [],
|
22588
|
+
nativeCurrency: { name: 'Powerloom Token', symbol: 'POWER', decimals: 18 },
|
22589
|
+
infoURL: 'https://powerloom.network',
|
22590
|
+
shortName: 'powerloom',
|
22591
|
+
chainId: 7869,
|
22592
|
+
networkId: 7869,
|
22593
|
+
icon: 'power',
|
22594
|
+
status: 'active',
|
22595
|
+
explorers: [
|
22596
|
+
{
|
22597
|
+
name: 'blockscout',
|
22598
|
+
url: 'https://explorer-v2.powerloom.network',
|
22599
|
+
icon: 'blockscout',
|
22600
|
+
standard: 'EIP3091'
|
22601
|
+
}
|
22602
|
+
]
|
22603
|
+
},
|
22579
22604
|
{
|
22580
22605
|
name: 'Hazlor Testnet',
|
22581
22606
|
chain: 'SCAS',
|
@@ -24171,13 +24196,13 @@ const chainArray = [
|
|
24171
24196
|
faucets: [ 'https://alphatestnet-explorer.qubetics.work/faucet' ],
|
24172
24197
|
nativeCurrency: { name: 'Qubetics Testnet Token', symbol: 'TICS', decimals: 18 },
|
24173
24198
|
infoURL: 'https://www.qubetics.com/',
|
24174
|
-
shortName: '
|
24199
|
+
shortName: 'QubeticsAlpha',
|
24175
24200
|
chainId: 9003,
|
24176
24201
|
networkId: 9003,
|
24177
24202
|
icon: 'qubetics',
|
24178
24203
|
explorers: [
|
24179
24204
|
{
|
24180
|
-
name: 'Qubetics Testnet Explorer',
|
24205
|
+
name: 'Qubetics Alpha Testnet Explorer',
|
24181
24206
|
url: 'https://alphatestnet-explorer.qubetics.work/dashboard',
|
24182
24207
|
standard: 'none',
|
24183
24208
|
icon: 'qubetics'
|
@@ -24299,6 +24324,26 @@ const chainArray = [
|
|
24299
24324
|
}
|
24300
24325
|
]
|
24301
24326
|
},
|
24327
|
+
{
|
24328
|
+
name: 'Qubetics Testnet',
|
24329
|
+
chain: 'Qubetics Testnet',
|
24330
|
+
rpc: [ 'https://rpc-testnet.qubetics.work/' ],
|
24331
|
+
faucets: [ 'https://testnet.qubetics.work/faucet' ],
|
24332
|
+
nativeCurrency: { name: 'Qubetics Testnet Token', symbol: 'TICS', decimals: 18 },
|
24333
|
+
infoURL: 'https://www.qubetics.com/',
|
24334
|
+
shortName: 'Qubetics',
|
24335
|
+
chainId: 9029,
|
24336
|
+
networkId: 9029,
|
24337
|
+
icon: 'qubetics',
|
24338
|
+
explorers: [
|
24339
|
+
{
|
24340
|
+
name: 'Qubetics Testnet Explorer',
|
24341
|
+
url: 'https://testnet.qubetics.work',
|
24342
|
+
standard: 'none',
|
24343
|
+
icon: 'qubetics'
|
24344
|
+
}
|
24345
|
+
]
|
24346
|
+
},
|
24302
24347
|
{
|
24303
24348
|
name: 'Apex Fusion - Nexus Mainnet',
|
24304
24349
|
chain: 'Nexus Mainnet',
|
@@ -29839,42 +29884,32 @@ const chainArray = [
|
|
29839
29884
|
]
|
29840
29885
|
},
|
29841
29886
|
{
|
29842
|
-
name: 'Xchain Mainnet',
|
29843
|
-
chain: '
|
29887
|
+
name: 'Xchain Mainnet (Deprecated)',
|
29888
|
+
chain: 'XchainDeprecated',
|
29844
29889
|
icon: 'intd',
|
29845
|
-
rpc: [
|
29890
|
+
rpc: [],
|
29846
29891
|
faucets: [],
|
29847
29892
|
nativeCurrency: { name: 'Intdestcoin', symbol: 'INTD', decimals: 18 },
|
29848
|
-
infoURL: 'https://
|
29849
|
-
shortName: '
|
29893
|
+
infoURL: 'https://chainlist.org/chain/31753',
|
29894
|
+
shortName: 'INTD_deprecated',
|
29850
29895
|
chainId: 31753,
|
29851
29896
|
networkId: 31753,
|
29852
|
-
|
29853
|
-
|
29854
|
-
name: 'Xchain Mainnet Explorer',
|
29855
|
-
url: 'https://xchainscan.com',
|
29856
|
-
standard: 'EIP3091'
|
29857
|
-
}
|
29858
|
-
]
|
29897
|
+
status: 'deprecated',
|
29898
|
+
explorers: []
|
29859
29899
|
},
|
29860
29900
|
{
|
29861
|
-
name: 'Xchain Testnet',
|
29862
|
-
chain: '
|
29901
|
+
name: 'Xchain Testnet (Deprecated)',
|
29902
|
+
chain: 'XchainDeprecated',
|
29863
29903
|
icon: 'intd',
|
29864
|
-
rpc: [
|
29865
|
-
faucets: [
|
29904
|
+
rpc: [],
|
29905
|
+
faucets: [],
|
29866
29906
|
nativeCurrency: { name: 'Intdestcoin Testnet', symbol: 'INTD', decimals: 18 },
|
29867
|
-
infoURL: 'https://
|
29868
|
-
shortName: '
|
29907
|
+
infoURL: 'https://chainlist.org/chain/31754',
|
29908
|
+
shortName: 'tINTD_deprecated',
|
29869
29909
|
chainId: 31754,
|
29870
29910
|
networkId: 31754,
|
29871
|
-
|
29872
|
-
|
29873
|
-
name: 'Xchain Testnet Explorer',
|
29874
|
-
url: 'https://xchaintest.net',
|
29875
|
-
standard: 'EIP3091'
|
29876
|
-
}
|
29877
|
-
]
|
29911
|
+
status: 'deprecated',
|
29912
|
+
explorers: []
|
29878
29913
|
},
|
29879
29914
|
{
|
29880
29915
|
name: 'W3Gamez Holesky Testnet',
|
@@ -33143,6 +33178,24 @@ const chainArray = [
|
|
33143
33178
|
}
|
33144
33179
|
]
|
33145
33180
|
},
|
33181
|
+
{
|
33182
|
+
name: 'XCHAIN Testnet',
|
33183
|
+
chain: 'XCHAIN',
|
33184
|
+
rpc: [ 'https://xchain-testnet-rpc.kuma.bid' ],
|
33185
|
+
faucets: [],
|
33186
|
+
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
33187
|
+
infoURL: 'https://kuma.bid',
|
33188
|
+
shortName: 'xct',
|
33189
|
+
chainId: 64002,
|
33190
|
+
networkId: 64002,
|
33191
|
+
explorers: [
|
33192
|
+
{
|
33193
|
+
name: 'XCHAIN Testnet Explorer',
|
33194
|
+
url: 'https://xchain-testnet-explorer.kuma.bid',
|
33195
|
+
standard: 'EIP3091'
|
33196
|
+
}
|
33197
|
+
]
|
33198
|
+
},
|
33146
33199
|
{
|
33147
33200
|
name: 'CratD2C Testnet',
|
33148
33201
|
chain: 'CRATD2C',
|
@@ -34178,7 +34231,14 @@ const chainArray = [
|
|
34178
34231
|
chainId: 80069,
|
34179
34232
|
networkId: 80069,
|
34180
34233
|
icon: 'berachain',
|
34181
|
-
explorers: [
|
34234
|
+
explorers: [
|
34235
|
+
{
|
34236
|
+
name: 'Beratrail',
|
34237
|
+
url: 'https://bepolia.beratrail.io',
|
34238
|
+
icon: 'berachain',
|
34239
|
+
standard: 'none'
|
34240
|
+
}
|
34241
|
+
]
|
34182
34242
|
},
|
34183
34243
|
{
|
34184
34244
|
name: 'Berachain bArtio',
|
@@ -35230,6 +35290,24 @@ const chainArray = [
|
|
35230
35290
|
}
|
35231
35291
|
]
|
35232
35292
|
},
|
35293
|
+
{
|
35294
|
+
name: 'XCHAIN',
|
35295
|
+
chain: 'XCHAIN',
|
35296
|
+
rpc: [ 'https://xchain-rpc.kuma.bid' ],
|
35297
|
+
faucets: [],
|
35298
|
+
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
35299
|
+
infoURL: 'https://kuma.bid',
|
35300
|
+
shortName: 'xc',
|
35301
|
+
chainId: 94524,
|
35302
|
+
networkId: 94524,
|
35303
|
+
explorers: [
|
35304
|
+
{
|
35305
|
+
name: 'XCHAIN Explorer',
|
35306
|
+
url: 'https://xchain-explorer.kuma.bid',
|
35307
|
+
standard: 'EIP3091'
|
35308
|
+
}
|
35309
|
+
]
|
35310
|
+
},
|
35233
35311
|
{
|
35234
35312
|
name: 'SRICHAIN',
|
35235
35313
|
chain: 'SRICHAIN',
|
@@ -40103,6 +40181,31 @@ const chainArray = [
|
|
40103
40181
|
],
|
40104
40182
|
infoURL: 'https://wonnetwork.org'
|
40105
40183
|
},
|
40184
|
+
{
|
40185
|
+
name: 'Pyrope Testnet',
|
40186
|
+
chain: 'ETH',
|
40187
|
+
rpc: [ 'https://rpc.pyropechain.com', 'wss://rpc.pyropechain.com' ],
|
40188
|
+
faucets: [],
|
40189
|
+
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
40190
|
+
infoURL: 'https://pyropechain.com',
|
40191
|
+
shortName: 'pyrope',
|
40192
|
+
chainId: 695569,
|
40193
|
+
networkId: 695569,
|
40194
|
+
icon: 'pyrope',
|
40195
|
+
explorers: [
|
40196
|
+
{
|
40197
|
+
name: 'blockscout',
|
40198
|
+
url: 'https://pyrope.blockscout.com',
|
40199
|
+
icon: 'blockscout',
|
40200
|
+
standard: 'EIP3091'
|
40201
|
+
}
|
40202
|
+
],
|
40203
|
+
parent: {
|
40204
|
+
type: 'L2',
|
40205
|
+
chain: 'eip155-11155111',
|
40206
|
+
bridges: [ { url: 'https://pyropechain.com/bridge' } ]
|
40207
|
+
}
|
40208
|
+
},
|
40106
40209
|
{
|
40107
40210
|
name: 'Galadriel Devnet',
|
40108
40211
|
chain: 'Galadriel',
|
@@ -43502,7 +43605,7 @@ const chainArray = [
|
|
43502
43605
|
{
|
43503
43606
|
name: '6Degree of Outreach - Testnet',
|
43504
43607
|
chain: '6DO',
|
43505
|
-
rpc: [ 'https://rpc-testnet.
|
43608
|
+
rpc: [ 'https://rpc-testnet.6dochain.com' ],
|
43506
43609
|
faucets: [],
|
43507
43610
|
nativeCurrency: { name: '6Degree-Testnet Coin', symbol: '6DO-T', decimals: 18 },
|
43508
43611
|
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
@@ -43514,7 +43617,7 @@ const chainArray = [
|
|
43514
43617
|
explorers: [
|
43515
43618
|
{
|
43516
43619
|
name: '6Degree Testnet Chain Explorer',
|
43517
|
-
url: 'https://explorer-testnet.
|
43620
|
+
url: 'https://explorer-testnet.6dochain.com',
|
43518
43621
|
standard: 'EIP3091'
|
43519
43622
|
}
|
43520
43623
|
]
|