eth-chainlist 0.0.490 → 0.0.491
Sign up to get free protection for your applications and to get access to all the features.
- package/CHANGELOG.md +8 -0
- package/data/chain.js +91 -9
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
### 0.0.491 (2024-09-12)
|
4
|
+
|
5
|
+
|
6
|
+
### Maintenance
|
7
|
+
|
8
|
+
* **release:** 0.0.490 ([15e2344](https://github.com/poowf/eth-chainlist/commit/15e234448e60574e8d65626cecb75793135bffa4))
|
9
|
+
* update chain data ([d8f3ffe](https://github.com/poowf/eth-chainlist/commit/d8f3ffea295bc0bbb9ec28e185e437a7d70f7774))
|
10
|
+
|
3
11
|
### 0.0.490 (2024-09-11)
|
4
12
|
|
5
13
|
|
package/data/chain.js
CHANGED
@@ -3526,6 +3526,24 @@ const chainArray = [
|
|
3526
3526
|
icon: 'waterfall-main',
|
3527
3527
|
explorers: []
|
3528
3528
|
},
|
3529
|
+
{
|
3530
|
+
name: 'Ethernity Mainnet',
|
3531
|
+
chain: 'Ethernity',
|
3532
|
+
rpc: [ 'https://mainnet.ethernitychain.io' ],
|
3533
|
+
faucets: [],
|
3534
|
+
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
3535
|
+
infoURL: 'https://www.ethernity.io',
|
3536
|
+
shortName: 'ethernity-mainnet',
|
3537
|
+
chainId: 183,
|
3538
|
+
networkId: 183,
|
3539
|
+
explorers: [
|
3540
|
+
{
|
3541
|
+
name: 'Ethernity Mainnet Explorer',
|
3542
|
+
url: 'https://ernscan.io',
|
3543
|
+
standard: 'EIP3091'
|
3544
|
+
}
|
3545
|
+
]
|
3546
|
+
},
|
3529
3547
|
{
|
3530
3548
|
name: 'Dojima Testnet',
|
3531
3549
|
chain: 'Dojima',
|
@@ -10711,20 +10729,20 @@ const chainArray = [
|
|
10711
10729
|
status: 'deprecated'
|
10712
10730
|
},
|
10713
10731
|
{
|
10714
|
-
name: 'Silicon zkEVM Sepolia Testnet',
|
10715
|
-
title: 'Silicon zkEVM Sepolia Testnet',
|
10732
|
+
name: 'Silicon zkEVM Sepolia Testnet(Deprecated)',
|
10733
|
+
title: 'Silicon zkEVM Sepolia Testnet(Deprecated)',
|
10716
10734
|
chain: 'Silicon',
|
10717
10735
|
rpc: [],
|
10718
10736
|
faucets: [],
|
10719
10737
|
nativeCurrency: { name: 'Sepolia Ether', symbol: 'ETH', decimals: 18 },
|
10720
10738
|
infoURL: '',
|
10721
|
-
shortName: 'silicon-sepolia-testnet',
|
10739
|
+
shortName: 'silicon-sepolia-testnet-deprecated',
|
10722
10740
|
chainId: 1414,
|
10723
10741
|
networkId: 1414,
|
10724
10742
|
icon: 'silicon',
|
10725
10743
|
explorers: [],
|
10726
10744
|
parent: { type: 'L2', chain: 'eip155-11155111', bridges: [] },
|
10727
|
-
status: '
|
10745
|
+
status: 'deprecated'
|
10728
10746
|
},
|
10729
10747
|
{
|
10730
10748
|
name: 'Polygon zkEVM Testnet Pre Audit-Upgraded',
|
@@ -13876,17 +13894,33 @@ const chainArray = [
|
|
13876
13894
|
name: 'Silicon zkEVM',
|
13877
13895
|
title: 'Silicon zkEVM Mainnet',
|
13878
13896
|
chain: 'Silicon',
|
13879
|
-
rpc: [
|
13897
|
+
rpc: [
|
13898
|
+
'https://rpc.silicon.network',
|
13899
|
+
'https://silicon-mainnet.nodeinfra.com'
|
13900
|
+
],
|
13880
13901
|
faucets: [],
|
13881
13902
|
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
13882
|
-
infoURL: '',
|
13903
|
+
infoURL: 'https://docs.silicon.network',
|
13883
13904
|
shortName: 'silicon-zk',
|
13884
13905
|
chainId: 2355,
|
13885
13906
|
networkId: 2355,
|
13886
13907
|
icon: 'silicon',
|
13887
|
-
explorers: [
|
13888
|
-
|
13889
|
-
|
13908
|
+
explorers: [
|
13909
|
+
{
|
13910
|
+
name: 'siliconscope',
|
13911
|
+
url: 'https://scope.silicon.network',
|
13912
|
+
standard: 'EIP3091'
|
13913
|
+
}
|
13914
|
+
],
|
13915
|
+
parent: {
|
13916
|
+
type: 'L2',
|
13917
|
+
chain: 'eip155-1',
|
13918
|
+
bridges: [
|
13919
|
+
{ url: 'https://bridge.silicon.network' },
|
13920
|
+
{ url: 'https://bridge.orbitchain.io' }
|
13921
|
+
]
|
13922
|
+
},
|
13923
|
+
status: 'active'
|
13890
13924
|
},
|
13891
13925
|
{
|
13892
13926
|
name: '(deprecated) Kroma Sepolia',
|
@@ -27697,6 +27731,25 @@ const chainArray = [
|
|
27697
27731
|
icon: 'automata',
|
27698
27732
|
explorers: []
|
27699
27733
|
},
|
27734
|
+
{
|
27735
|
+
name: 'Creator Chain Testnet',
|
27736
|
+
chain: 'creatorchain',
|
27737
|
+
icon: 'creatorchain',
|
27738
|
+
rpc: [ 'https://rpc.creatorchain.io' ],
|
27739
|
+
faucets: [],
|
27740
|
+
nativeCurrency: { name: 'CreatorETH', symbol: 'CETH', decimals: 18 },
|
27741
|
+
infoURL: 'https://docs.creatorchain.io/',
|
27742
|
+
shortName: 'ceth',
|
27743
|
+
chainId: 66665,
|
27744
|
+
networkId: 66665,
|
27745
|
+
explorers: [
|
27746
|
+
{
|
27747
|
+
name: 'creatorchainscan',
|
27748
|
+
url: 'https://explorer.creatorchain.io',
|
27749
|
+
standard: 'EIP3091'
|
27750
|
+
}
|
27751
|
+
]
|
27752
|
+
},
|
27700
27753
|
{
|
27701
27754
|
name: 'Janus Testnet',
|
27702
27755
|
chain: 'JanusNetwork',
|
@@ -37195,6 +37248,35 @@ const chainArray = [
|
|
37195
37248
|
networkId: 1666900001,
|
37196
37249
|
explorers: []
|
37197
37250
|
},
|
37251
|
+
{
|
37252
|
+
name: 'Silicon zkEVM Sepolia Testnet',
|
37253
|
+
title: 'Silicon zkEVM Sepolia Testnet',
|
37254
|
+
chain: 'Silicon',
|
37255
|
+
rpc: [
|
37256
|
+
'https://rpc-sepolia.silicon.network',
|
37257
|
+
'https://silicon-testnet.nodeinfra.com'
|
37258
|
+
],
|
37259
|
+
faucets: [],
|
37260
|
+
nativeCurrency: { name: 'Sepolia Ether', symbol: 'ETH', decimals: 18 },
|
37261
|
+
infoURL: 'https://docs.silicon.network',
|
37262
|
+
shortName: 'silicon-sepolia-testnet',
|
37263
|
+
chainId: 1722641160,
|
37264
|
+
networkId: 1722641160,
|
37265
|
+
icon: 'silicon',
|
37266
|
+
explorers: [
|
37267
|
+
{
|
37268
|
+
name: 'siliconscope-sepolia',
|
37269
|
+
url: 'https://scope-sepolia.silicon.network',
|
37270
|
+
standard: 'EIP3091'
|
37271
|
+
}
|
37272
|
+
],
|
37273
|
+
parent: {
|
37274
|
+
type: 'L2',
|
37275
|
+
chain: 'eip155-11155111',
|
37276
|
+
bridges: [ { url: 'https://bridge-sepolia.silicon.network' } ]
|
37277
|
+
},
|
37278
|
+
status: 'active'
|
37279
|
+
},
|
37198
37280
|
{
|
37199
37281
|
name: 'Kakarot Sepolia',
|
37200
37282
|
chain: 'ETH',
|