eth-chainlist 0.0.221 → 0.0.222
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 +118 -17
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
### 0.0.222 (2023-08-30)
|
4
|
+
|
5
|
+
|
6
|
+
### Maintenance
|
7
|
+
|
8
|
+
* **release:** 0.0.221 ([bd06e15](https://github.com/poowf/eth-chainlist/commit/bd06e15819f2c4220f15c7b5c169d5bb18def43b))
|
9
|
+
* update chain data ([c2379fb](https://github.com/poowf/eth-chainlist/commit/c2379fb11e5713d2b43b1dcac2e4ac7940341699))
|
10
|
+
|
3
11
|
### 0.0.221 (2023-08-29)
|
4
12
|
|
5
13
|
|
package/data/chain.js
CHANGED
@@ -638,16 +638,24 @@ const chainArray = [
|
|
638
638
|
]
|
639
639
|
},
|
640
640
|
{
|
641
|
-
name: '
|
642
|
-
chain: '
|
643
|
-
rpc: [ 'https://
|
644
|
-
faucets: [],
|
645
|
-
nativeCurrency: { name: '
|
646
|
-
infoURL: 'https://
|
647
|
-
shortName: '
|
648
|
-
icon: 'seedcoin',
|
641
|
+
name: 'Xpla Mainnet',
|
642
|
+
chain: 'XPLA',
|
643
|
+
rpc: [ 'https://dimension-rpc.xpla.dev' ],
|
644
|
+
faucets: [],
|
645
|
+
nativeCurrency: { name: 'XPLA', symbol: 'XPLA', decimals: 18 },
|
646
|
+
infoURL: 'https://xpla.io',
|
647
|
+
shortName: 'xpla',
|
649
648
|
chainId: 37,
|
650
|
-
networkId: 37
|
649
|
+
networkId: 37,
|
650
|
+
icon: 'xpla',
|
651
|
+
explorers: [
|
652
|
+
{
|
653
|
+
name: 'XPLA Explorer',
|
654
|
+
url: 'https://explorer.xpla.io',
|
655
|
+
standard: 'none'
|
656
|
+
}
|
657
|
+
],
|
658
|
+
redFlags: [ 'reusedChainId' ]
|
651
659
|
},
|
652
660
|
{
|
653
661
|
name: 'Valorbit',
|
@@ -4884,6 +4892,32 @@ const chainArray = [
|
|
4884
4892
|
}
|
4885
4893
|
]
|
4886
4894
|
},
|
4895
|
+
{
|
4896
|
+
name: 'JuncaGlobal Chain Testnet',
|
4897
|
+
chain: 'JuncaGlobal Test Chain',
|
4898
|
+
rpc: [
|
4899
|
+
'https://rpc-testnet.juncachain.com',
|
4900
|
+
'wss://ws-testnet.juncachain.com'
|
4901
|
+
],
|
4902
|
+
faucets: [ 'https://faucet-testnet.juncachain.com' ],
|
4903
|
+
nativeCurrency: {
|
4904
|
+
name: 'JuncaGlobal Chain Testnet Native Token',
|
4905
|
+
symbol: 'JGCT',
|
4906
|
+
decimals: 18
|
4907
|
+
},
|
4908
|
+
infoURL: 'https://junca-cash.world',
|
4909
|
+
shortName: 'junca',
|
4910
|
+
chainId: 669,
|
4911
|
+
networkId: 669,
|
4912
|
+
explorers: [
|
4913
|
+
{
|
4914
|
+
name: 'blockscout',
|
4915
|
+
url: 'https://scan-testnet.juncachain.com',
|
4916
|
+
icon: 'blockscout',
|
4917
|
+
standard: 'EIP3091'
|
4918
|
+
}
|
4919
|
+
]
|
4920
|
+
},
|
4887
4921
|
{
|
4888
4922
|
name: 'Karura Network',
|
4889
4923
|
chain: 'KAR',
|
@@ -9241,6 +9275,29 @@ const chainArray = [
|
|
9241
9275
|
}
|
9242
9276
|
]
|
9243
9277
|
},
|
9278
|
+
{
|
9279
|
+
name: 'Morphism Testnet',
|
9280
|
+
chain: 'ETH',
|
9281
|
+
rpc: [ 'https://rpc-testnet.morphism.xyz' ],
|
9282
|
+
faucets: [],
|
9283
|
+
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
9284
|
+
infoURL: 'https://morphism.xyz',
|
9285
|
+
shortName: 'tmorph',
|
9286
|
+
chainId: 2710,
|
9287
|
+
networkId: 2710,
|
9288
|
+
explorers: [
|
9289
|
+
{
|
9290
|
+
name: 'Morphism Testnet Explorer',
|
9291
|
+
url: 'https://explorer-testnet.morphism.xyz',
|
9292
|
+
standard: 'EIP3091'
|
9293
|
+
}
|
9294
|
+
],
|
9295
|
+
parent: {
|
9296
|
+
type: 'L2',
|
9297
|
+
chain: 'eip155-1',
|
9298
|
+
bridges: [ { url: 'https://bridge-testnet.morphism.xyz' } ]
|
9299
|
+
}
|
9300
|
+
},
|
9244
9301
|
{
|
9245
9302
|
name: 'Boba Network Goerli Testnet',
|
9246
9303
|
chain: 'ETH',
|
@@ -9747,13 +9804,13 @@ const chainArray = [
|
|
9747
9804
|
]
|
9748
9805
|
},
|
9749
9806
|
{
|
9750
|
-
name: 'Xpla
|
9751
|
-
chain: '
|
9807
|
+
name: 'Xpla Testnet',
|
9808
|
+
chain: 'XPLATest',
|
9752
9809
|
rpc: [ 'https://dimension-rpc.xpla.dev' ],
|
9753
|
-
faucets: [ 'https://faucet.xpla.io
|
9810
|
+
faucets: [ 'https://faucet.xpla.io' ],
|
9754
9811
|
nativeCurrency: { name: 'XPLA', symbol: 'XPLA', decimals: 18 },
|
9755
|
-
infoURL: 'https://xpla.io
|
9756
|
-
shortName: '
|
9812
|
+
infoURL: 'https://xpla.io',
|
9813
|
+
shortName: 'xplatest',
|
9757
9814
|
chainId: 3701,
|
9758
9815
|
networkId: 3701,
|
9759
9816
|
icon: 'xpla',
|
@@ -9763,7 +9820,8 @@ const chainArray = [
|
|
9763
9820
|
url: 'https://explorer.xpla.io',
|
9764
9821
|
standard: 'none'
|
9765
9822
|
}
|
9766
|
-
]
|
9823
|
+
],
|
9824
|
+
redFlags: [ 'reusedChainId' ]
|
9767
9825
|
},
|
9768
9826
|
{
|
9769
9827
|
name: 'Crossbell',
|
@@ -11277,11 +11335,14 @@ const chainArray = [
|
|
11277
11335
|
status: 'incubating'
|
11278
11336
|
},
|
11279
11337
|
{
|
11280
|
-
name: 'Horizen EON',
|
11338
|
+
name: 'Horizen EON Mainnet',
|
11281
11339
|
shortName: 'EON',
|
11282
11340
|
chain: 'EON',
|
11283
11341
|
icon: 'eon',
|
11284
|
-
rpc: [
|
11342
|
+
rpc: [
|
11343
|
+
'https://eon-rpc.horizenlabs.io/ethv1',
|
11344
|
+
'https://rpc.ankr.com/horizen_eon'
|
11345
|
+
],
|
11285
11346
|
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
11286
11347
|
faucets: [],
|
11287
11348
|
nativeCurrency: { name: 'Zencash', symbol: 'ZEN', decimals: 18 },
|
@@ -13927,6 +13988,26 @@ const chainArray = [
|
|
13927
13988
|
}
|
13928
13989
|
]
|
13929
13990
|
},
|
13991
|
+
{
|
13992
|
+
name: 'Nautilus Mainnet',
|
13993
|
+
chain: 'ETH',
|
13994
|
+
icon: 'nautilus',
|
13995
|
+
rpc: [ 'https://api.nautilus.nautchain.xyz' ],
|
13996
|
+
faucets: [],
|
13997
|
+
nativeCurrency: { name: 'Zebec', symbol: 'ZBC', decimals: 18 },
|
13998
|
+
infoURL: 'https://docs.nautchain.xyz',
|
13999
|
+
shortName: 'NAUTCHAIN',
|
14000
|
+
chainId: 22222,
|
14001
|
+
networkId: 22222,
|
14002
|
+
explorers: [
|
14003
|
+
{
|
14004
|
+
name: 'Nautscan',
|
14005
|
+
url: 'https://nautscan.com',
|
14006
|
+
standard: 'EIP3091',
|
14007
|
+
icon: 'nautilus'
|
14008
|
+
}
|
14009
|
+
]
|
14010
|
+
},
|
13930
14011
|
{
|
13931
14012
|
name: 'MAP Mainnet',
|
13932
14013
|
chain: 'MAP',
|
@@ -16108,6 +16189,26 @@ const chainArray = [
|
|
16108
16189
|
chainId: 85449,
|
16109
16190
|
networkId: 48501
|
16110
16191
|
},
|
16192
|
+
{
|
16193
|
+
name: 'Nautilus Proteus Testnet',
|
16194
|
+
chain: 'ETH',
|
16195
|
+
icon: 'nautilus',
|
16196
|
+
rpc: [ 'https://api.proteus.nautchain.xyz/solana' ],
|
16197
|
+
faucets: [ 'https://proteusfaucet.nautchain.xyz' ],
|
16198
|
+
nativeCurrency: { name: 'Zebec Test Token', symbol: 'tZBC', decimals: 18 },
|
16199
|
+
infoURL: 'https://docs.nautchain.xyz',
|
16200
|
+
shortName: 'NAUTTest',
|
16201
|
+
chainId: 88002,
|
16202
|
+
networkId: 88002,
|
16203
|
+
explorers: [
|
16204
|
+
{
|
16205
|
+
name: 'Nautscan',
|
16206
|
+
url: 'https://proteus.nautscan.com',
|
16207
|
+
standard: 'EIP3091',
|
16208
|
+
icon: 'nautilus'
|
16209
|
+
}
|
16210
|
+
]
|
16211
|
+
},
|
16111
16212
|
{
|
16112
16213
|
name: 'Chiliz Scoville Testnet',
|
16113
16214
|
chain: 'CHZ',
|