eth-chainlist 0.0.451 → 0.0.453
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 +109 -9
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,21 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
### 0.0.453 (2024-07-28)
|
4
|
+
|
5
|
+
|
6
|
+
### Maintenance
|
7
|
+
|
8
|
+
* **release:** 0.0.452 ([97f2f7a](https://github.com/poowf/eth-chainlist/commit/97f2f7a655d765f94d7c134956412d55a7663200))
|
9
|
+
* update chain data ([b71bbbd](https://github.com/poowf/eth-chainlist/commit/b71bbbdd419708fbc5e64387a5339a3cbe4b3374))
|
10
|
+
|
11
|
+
### 0.0.452 (2024-07-27)
|
12
|
+
|
13
|
+
|
14
|
+
### Maintenance
|
15
|
+
|
16
|
+
* **release:** 0.0.451 ([c5d6141](https://github.com/poowf/eth-chainlist/commit/c5d61415606fceaad8b3f1ee64a7b8e61cc4ae37))
|
17
|
+
* update chain data ([639955a](https://github.com/poowf/eth-chainlist/commit/639955a6532b40c7b8413be80d6984c41d629758))
|
18
|
+
|
3
19
|
### 0.0.451 (2024-07-26)
|
4
20
|
|
5
21
|
|
package/data/chain.js
CHANGED
@@ -5603,6 +5603,24 @@ const chainArray = [
|
|
5603
5603
|
chainId: 385,
|
5604
5604
|
networkId: 385
|
5605
5605
|
},
|
5606
|
+
{
|
5607
|
+
name: 'Cronos zkEVM Mainnet',
|
5608
|
+
chain: 'CronosZkEVMMainnet',
|
5609
|
+
rpc: [ 'https://mainnet.zkevm.cronos.org' ],
|
5610
|
+
faucets: [],
|
5611
|
+
nativeCurrency: { name: 'Cronos zkEVM CRO', symbol: 'zkCRO', decimals: 18 },
|
5612
|
+
infoURL: 'https://cronos.org/zkevm',
|
5613
|
+
shortName: 'zkCRO',
|
5614
|
+
chainId: 388,
|
5615
|
+
networkId: 388,
|
5616
|
+
explorers: [
|
5617
|
+
{
|
5618
|
+
name: 'Cronos zkEVM (Mainnet) Chain Explorer',
|
5619
|
+
url: 'https://explorer.zkevm.cronos.org',
|
5620
|
+
standard: 'none'
|
5621
|
+
}
|
5622
|
+
]
|
5623
|
+
},
|
5606
5624
|
{
|
5607
5625
|
name: 'CamDL Testnet',
|
5608
5626
|
chain: 'CADL',
|
@@ -6636,8 +6654,8 @@ const chainArray = [
|
|
6636
6654
|
{
|
6637
6655
|
name: 'Darwin Devnet',
|
6638
6656
|
chain: 'Darwin',
|
6639
|
-
rpc: [ 'https://devnet.darwinchain.ai' ],
|
6640
|
-
faucets: [ 'https://devnet.darwinchain.ai/faucet' ],
|
6657
|
+
rpc: [ 'https://devnet-rpc.darwinchain.ai' ],
|
6658
|
+
faucets: [ 'https://devnet-rpc.darwinchain.ai/faucet' ],
|
6641
6659
|
nativeCurrency: { name: 'Darwin Devnet token', symbol: 'DNA', decimals: 18 },
|
6642
6660
|
infoURL: 'https://darwinchain.ai',
|
6643
6661
|
shortName: 'darwin-devnet',
|
@@ -16167,6 +16185,19 @@ const chainArray = [
|
|
16167
16185
|
}
|
16168
16186
|
]
|
16169
16187
|
},
|
16188
|
+
{
|
16189
|
+
name: 'World Chain Sepolia Testnet',
|
16190
|
+
chain: 'ETH',
|
16191
|
+
rpc: [],
|
16192
|
+
faucets: [],
|
16193
|
+
nativeCurrency: { name: 'Sepolia Ether', symbol: 'ETH', decimals: 18 },
|
16194
|
+
infoURL: 'https://worldcoin.org/',
|
16195
|
+
shortName: 'wcsep',
|
16196
|
+
chainId: 4801,
|
16197
|
+
networkId: 4801,
|
16198
|
+
slip44: 1,
|
16199
|
+
explorers: []
|
16200
|
+
},
|
16170
16201
|
{
|
16171
16202
|
name: 'Globel Chain',
|
16172
16203
|
chain: 'GC',
|
@@ -19920,7 +19951,7 @@ const chainArray = [
|
|
19920
19951
|
{
|
19921
19952
|
name: 'WeaveVM Testnet',
|
19922
19953
|
chain: 'WVM',
|
19923
|
-
rpc: [ 'https://testnet.wvm.dev' ],
|
19954
|
+
rpc: [ 'https://testnet.wvm.dev', 'https://testnet-rpc.wvm.dev' ],
|
19924
19955
|
faucets: [],
|
19925
19956
|
nativeCurrency: { name: 'Testnet WeaveVM Token', symbol: 'tWVM', decimals: 18 },
|
19926
19957
|
infoURL: 'https://wvm.dev',
|
@@ -20907,6 +20938,25 @@ const chainArray = [
|
|
20907
20938
|
}
|
20908
20939
|
]
|
20909
20940
|
},
|
20941
|
+
{
|
20942
|
+
name: 'Shape Sepolia Testnet',
|
20943
|
+
chain: 'ETH',
|
20944
|
+
rpc: [ 'https://sepolia.shape.network' ],
|
20945
|
+
faucets: [],
|
20946
|
+
nativeCurrency: { name: 'Sepolia Ether', symbol: 'ETH', decimals: 18 },
|
20947
|
+
infoURL: 'https://shape.network',
|
20948
|
+
shortName: 'shapesep',
|
20949
|
+
chainId: 11011,
|
20950
|
+
networkId: 11011,
|
20951
|
+
explorers: [
|
20952
|
+
{
|
20953
|
+
name: 'blockscout',
|
20954
|
+
url: 'https://shape-sepolia-explorer.alchemy.com',
|
20955
|
+
standard: 'EIP3091'
|
20956
|
+
}
|
20957
|
+
],
|
20958
|
+
slip44: 1
|
20959
|
+
},
|
20910
20960
|
{
|
20911
20961
|
name: 'Astra',
|
20912
20962
|
chain: 'Astra',
|
@@ -30740,17 +30790,17 @@ const chainArray = [
|
|
30740
30790
|
]
|
30741
30791
|
},
|
30742
30792
|
{
|
30743
|
-
name: 'World Chain Sepolia Testnet',
|
30793
|
+
name: 'World Chain Sepolia Testnet Deprecated',
|
30794
|
+
status: 'deprecated',
|
30744
30795
|
chain: 'ETH',
|
30745
|
-
rpc: [],
|
30746
|
-
faucets: [],
|
30747
30796
|
nativeCurrency: { name: 'Sepolia Ether', symbol: 'ETH', decimals: 18 },
|
30748
30797
|
infoURL: 'https://worldcoin.org/',
|
30749
|
-
shortName: 'wcsep',
|
30798
|
+
shortName: 'wcsep-dep',
|
30799
|
+
rpc: [],
|
30800
|
+
faucets: [],
|
30750
30801
|
chainId: 484752,
|
30751
30802
|
networkId: 484752,
|
30752
|
-
slip44: 1
|
30753
|
-
explorers: []
|
30803
|
+
slip44: 1
|
30754
30804
|
},
|
30755
30805
|
{
|
30756
30806
|
name: 'Gobbl Testnet',
|
@@ -34554,6 +34604,31 @@ const chainArray = [
|
|
34554
34604
|
}
|
34555
34605
|
]
|
34556
34606
|
},
|
34607
|
+
{
|
34608
|
+
name: 'Skopje Testnet',
|
34609
|
+
chain: 'Skopje Testnet',
|
34610
|
+
icon: 'skopje-gpt',
|
34611
|
+
rpc: [ 'https://skopje-rpc.gptprotocol.io' ],
|
34612
|
+
faucets: [ 'https://skopje-faucet.gptprotocol.io' ],
|
34613
|
+
chainId: 476462898,
|
34614
|
+
networkId: 476462898,
|
34615
|
+
nativeCurrency: { name: 'SkpGPT', symbol: 'SkpGPT', decimals: 18 },
|
34616
|
+
infoURL: 'https://gptprotocol.com',
|
34617
|
+
shortName: 'Skopje',
|
34618
|
+
parent: {
|
34619
|
+
type: 'L2',
|
34620
|
+
chain: 'eip155-11155111',
|
34621
|
+
bridges: [ { url: 'https://skopje-bridge.gptprotocol.io' } ]
|
34622
|
+
},
|
34623
|
+
explorers: [
|
34624
|
+
{
|
34625
|
+
name: 'blockscout',
|
34626
|
+
url: 'https://skopje-explorer.gptprotocol.io',
|
34627
|
+
standard: 'EIP3091',
|
34628
|
+
icon: 'blockscout'
|
34629
|
+
}
|
34630
|
+
]
|
34631
|
+
},
|
34557
34632
|
{
|
34558
34633
|
name: 'Gather Devnet Network',
|
34559
34634
|
chain: 'GTH',
|
@@ -34986,6 +35061,31 @@ const chainArray = [
|
|
34986
35061
|
}
|
34987
35062
|
]
|
34988
35063
|
},
|
35064
|
+
{
|
35065
|
+
name: 'GPT Mainnet',
|
35066
|
+
chain: 'GPT Protocol',
|
35067
|
+
icon: 'gpt',
|
35068
|
+
rpc: [ 'https://rpc.gptprotocol.io' ],
|
35069
|
+
faucets: [],
|
35070
|
+
chainId: 1511670449,
|
35071
|
+
networkId: 1511670449,
|
35072
|
+
nativeCurrency: { name: 'GPT', symbol: 'GPT', decimals: 18 },
|
35073
|
+
infoURL: 'https://gptprotocol.com',
|
35074
|
+
shortName: 'GPT',
|
35075
|
+
parent: {
|
35076
|
+
type: 'L2',
|
35077
|
+
chain: 'eip155-1',
|
35078
|
+
bridges: [ { url: 'https://bridge.gptprotocol.io' } ]
|
35079
|
+
},
|
35080
|
+
explorers: [
|
35081
|
+
{
|
35082
|
+
name: 'blockscout',
|
35083
|
+
url: 'https://explorer.gptprotocol.io',
|
35084
|
+
standard: 'EIP3091',
|
35085
|
+
icon: 'blockscout'
|
35086
|
+
}
|
35087
|
+
]
|
35088
|
+
},
|
34989
35089
|
{
|
34990
35090
|
name: 'Deprecated SKALE Titan Hub Testnet',
|
34991
35091
|
chain: 'staging-aware-chief-gianfar',
|