eth-chainlist 0.0.137 → 0.0.139
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 +23 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,21 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
### 0.0.139 (2023-04-28)
|
4
|
+
|
5
|
+
|
6
|
+
### Maintenance
|
7
|
+
|
8
|
+
* **release:** 0.0.138 ([ba511f9](https://github.com/poowf/eth-chainlist/commit/ba511f9f11803b54c5eb8127bb8c51932d9c0413))
|
9
|
+
* update chain data ([4dc9d43](https://github.com/poowf/eth-chainlist/commit/4dc9d43e246d90a231bc93b61db94871da9d4924))
|
10
|
+
|
11
|
+
### 0.0.138 (2023-04-27)
|
12
|
+
|
13
|
+
|
14
|
+
### Maintenance
|
15
|
+
|
16
|
+
* **release:** 0.0.137 ([0ef8d2d](https://github.com/poowf/eth-chainlist/commit/0ef8d2d89b5228bb735abf66c9052f4b9f61188b))
|
17
|
+
* update chain data ([1491bf6](https://github.com/poowf/eth-chainlist/commit/1491bf69c816ec378a992ce515240007ba849ca0))
|
18
|
+
|
3
19
|
### 0.0.137 (2023-04-26)
|
4
20
|
|
5
21
|
|
package/data/chain.js
CHANGED
@@ -1910,7 +1910,7 @@ const chainArray = [
|
|
1910
1910
|
name: 'Nebula Testnet',
|
1911
1911
|
chain: 'NTN',
|
1912
1912
|
icon: 'nebulatestnet',
|
1913
|
-
rpc: [ 'https://testnet.rpc.novanetwork.io
|
1913
|
+
rpc: [ 'https://testnet.rpc.novanetwork.io' ],
|
1914
1914
|
faucets: [ 'https://faucet.novanetwork.io' ],
|
1915
1915
|
nativeCurrency: { name: 'Nebula X', symbol: 'NBX', decimals: 18 },
|
1916
1916
|
infoURL: 'https://novanetwork.io',
|
@@ -2419,6 +2419,26 @@ const chainArray = [
|
|
2419
2419
|
}
|
2420
2420
|
]
|
2421
2421
|
},
|
2422
|
+
{
|
2423
|
+
name: 'Six Protocol Testnet',
|
2424
|
+
chain: 'FIVENET',
|
2425
|
+
icon: 'six',
|
2426
|
+
rpc: [ 'https://rpc-evm.fivenet.sixprotocol.net' ],
|
2427
|
+
faucets: [ 'https://faucet.sixprotocol.net' ],
|
2428
|
+
nativeCurrency: { name: 'SIX testnet evm token', symbol: 'tSIX', decimals: 18 },
|
2429
|
+
infoURL: 'https://six.network/',
|
2430
|
+
shortName: 'sixt',
|
2431
|
+
chainId: 150,
|
2432
|
+
networkId: 150,
|
2433
|
+
explorers: [
|
2434
|
+
{
|
2435
|
+
name: 'SIX Scan fivenet',
|
2436
|
+
url: 'https://sixscan.io/fivenet',
|
2437
|
+
standard: 'none',
|
2438
|
+
icon: 'six'
|
2439
|
+
}
|
2440
|
+
]
|
2441
|
+
},
|
2422
2442
|
{
|
2423
2443
|
name: 'OEBlock Testnet',
|
2424
2444
|
chain: 'OEBt',
|
@@ -9269,7 +9289,7 @@ const chainArray = [
|
|
9269
9289
|
{
|
9270
9290
|
name: 'rootnet',
|
9271
9291
|
url: 'https://explorer.rootnet.live',
|
9272
|
-
standard: '
|
9292
|
+
standard: 'EIP3091'
|
9273
9293
|
}
|
9274
9294
|
]
|
9275
9295
|
},
|
@@ -9290,7 +9310,7 @@ const chainArray = [
|
|
9290
9310
|
{
|
9291
9311
|
name: 'rootnet',
|
9292
9312
|
url: 'https://explorer.rootnet.cloud',
|
9293
|
-
standard: '
|
9313
|
+
standard: 'EIP3091'
|
9294
9314
|
}
|
9295
9315
|
]
|
9296
9316
|
},
|