eth-chainlist 0.0.209 → 0.0.210
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 +68 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
### 0.0.210 (2023-08-15)
|
4
|
+
|
5
|
+
|
6
|
+
### Maintenance
|
7
|
+
|
8
|
+
* **release:** 0.0.209 ([08c8423](https://github.com/poowf/eth-chainlist/commit/08c8423b7bb107cda0cfc6b3572bea78b644e155))
|
9
|
+
* update chain data ([d4ef552](https://github.com/poowf/eth-chainlist/commit/d4ef552c61c28ff3f89783d78997f03630d1c825))
|
10
|
+
|
3
11
|
### 0.0.209 (2023-08-14)
|
4
12
|
|
5
13
|
|
package/data/chain.js
CHANGED
@@ -6719,6 +6719,26 @@ const chainArray = [
|
|
6719
6719
|
chainId: 1288,
|
6720
6720
|
networkId: 1288
|
6721
6721
|
},
|
6722
|
+
{
|
6723
|
+
name: 'Swisstronik Testnet',
|
6724
|
+
chain: 'SWTR',
|
6725
|
+
rpc: [ 'https://json-rpc.testnet.swisstronik.com' ],
|
6726
|
+
faucets: [ 'https://faucet.testnet.swisstronik.com' ],
|
6727
|
+
nativeCurrency: { name: 'Swisstronik', symbol: 'SWTR', decimals: 18 },
|
6728
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
6729
|
+
infoURL: 'https://www.swisstronik.com',
|
6730
|
+
shortName: 'swtr',
|
6731
|
+
chainId: 1291,
|
6732
|
+
networkId: 1291,
|
6733
|
+
icon: 'swisstronik',
|
6734
|
+
explorers: [
|
6735
|
+
{
|
6736
|
+
name: 'Swisstronik Scout',
|
6737
|
+
url: 'https://explorer-evm.testnet.swisstronik.com',
|
6738
|
+
standard: 'none'
|
6739
|
+
}
|
6740
|
+
]
|
6741
|
+
},
|
6722
6742
|
{
|
6723
6743
|
name: 'Bobabeam',
|
6724
6744
|
chain: 'Bobabeam',
|
@@ -8828,6 +8848,30 @@ const chainArray = [
|
|
8828
8848
|
}
|
8829
8849
|
]
|
8830
8850
|
},
|
8851
|
+
{
|
8852
|
+
name: 'Unicorn Ultra Nebulas Testnet',
|
8853
|
+
chain: 'u2u',
|
8854
|
+
rpc: [ 'https://rpc-nebulas-testnet.uniultra.xyz' ],
|
8855
|
+
faucets: [ 'https://faucet.uniultra.xyz' ],
|
8856
|
+
nativeCurrency: {
|
8857
|
+
name: 'Unicorn Ultra Nebulas Testnet',
|
8858
|
+
symbol: 'U2U',
|
8859
|
+
decimals: 18
|
8860
|
+
},
|
8861
|
+
infoURL: 'https://uniultra.xyz',
|
8862
|
+
shortName: 'u2u_nebulas',
|
8863
|
+
chainId: 2484,
|
8864
|
+
networkId: 2484,
|
8865
|
+
icon: 'u2u_nebulas',
|
8866
|
+
explorers: [
|
8867
|
+
{
|
8868
|
+
icon: 'u2u_nebulas',
|
8869
|
+
name: 'U2U Explorer',
|
8870
|
+
url: 'https://testnet.u2uscan.xyz',
|
8871
|
+
standard: 'EIP3091'
|
8872
|
+
}
|
8873
|
+
]
|
8874
|
+
},
|
8831
8875
|
{
|
8832
8876
|
name: 'Kortho Mainnet',
|
8833
8877
|
chain: 'Kortho Chain',
|
@@ -13110,6 +13154,30 @@ const chainArray = [
|
|
13110
13154
|
}
|
13111
13155
|
]
|
13112
13156
|
},
|
13157
|
+
{
|
13158
|
+
name: 'Holesky',
|
13159
|
+
chain: 'ETH',
|
13160
|
+
rpc: [ 'https://rpc.holesky.ethpandaops.io' ],
|
13161
|
+
faucets: [
|
13162
|
+
'https://faucet.holesky.ethpandaops.io',
|
13163
|
+
'https://holesky-faucet.pk910.de'
|
13164
|
+
],
|
13165
|
+
nativeCurrency: { name: 'Testnet ETH', symbol: 'ETH', decimals: 18 },
|
13166
|
+
infoURL: 'https://holesky.ethpandaops.io',
|
13167
|
+
shortName: 'holesky',
|
13168
|
+
chainId: 17000,
|
13169
|
+
networkId: 17000,
|
13170
|
+
icon: 'ethereum',
|
13171
|
+
status: 'incubating',
|
13172
|
+
explorers: [
|
13173
|
+
{
|
13174
|
+
name: 'Holesky Explorer',
|
13175
|
+
url: 'https://holesky.beaconcha.in',
|
13176
|
+
icon: 'ethereum',
|
13177
|
+
standard: 'EIP3091'
|
13178
|
+
}
|
13179
|
+
]
|
13180
|
+
},
|
13113
13181
|
{
|
13114
13182
|
name: 'Palette Chain Testnet',
|
13115
13183
|
chain: 'PLT',
|