eth-chainlist 0.0.326 → 0.0.327
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 +22 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
### 0.0.327 (2024-01-27)
|
4
|
+
|
5
|
+
|
6
|
+
### Maintenance
|
7
|
+
|
8
|
+
* **release:** 0.0.326 ([efc0959](https://github.com/poowf/eth-chainlist/commit/efc09595c4a8f8678ca393de32b90cc72f15fd9a))
|
9
|
+
* update chain data ([c90a6df](https://github.com/poowf/eth-chainlist/commit/c90a6df68c2988934141379755a39bba81e4eddc))
|
10
|
+
|
3
11
|
### 0.0.326 (2024-01-26)
|
4
12
|
|
5
13
|
|
package/data/chain.js
CHANGED
@@ -16403,6 +16403,25 @@ const chainArray = [
|
|
16403
16403
|
}
|
16404
16404
|
]
|
16405
16405
|
},
|
16406
|
+
{
|
16407
|
+
name: 'Eclipse Subnet',
|
16408
|
+
chain: 'ECLIPSE',
|
16409
|
+
rpc: [ 'https://subnets.avax.network/eclipse/testnet/rpc' ],
|
16410
|
+
features: [ { name: 'EIP1559' } ],
|
16411
|
+
faucets: [],
|
16412
|
+
nativeCurrency: { name: 'Eclipse', symbol: 'ECLP', decimals: 16 },
|
16413
|
+
infoURL: 'http://eclipsenet.io',
|
16414
|
+
shortName: 'eclipse',
|
16415
|
+
chainId: 17172,
|
16416
|
+
networkId: 17172,
|
16417
|
+
explorers: [
|
16418
|
+
{
|
16419
|
+
name: 'ECLIPSE Explorer',
|
16420
|
+
url: 'https://subnets-test.avax.network/eclipse',
|
16421
|
+
standard: 'EIP3091'
|
16422
|
+
}
|
16423
|
+
]
|
16424
|
+
},
|
16406
16425
|
{
|
16407
16426
|
name: 'Palette Chain Testnet',
|
16408
16427
|
chain: 'PLT',
|
@@ -22285,12 +22304,12 @@ const chainArray = [
|
|
22285
22304
|
infoURL: 'https://docs.astria.org',
|
22286
22305
|
shortName: 'ria-dev',
|
22287
22306
|
nativeCurrency: { name: 'RIA', symbol: 'RIA', decimals: 18 },
|
22288
|
-
rpc: [ 'https://rpc.evm.dusk-
|
22289
|
-
faucets: [ 'https://faucet.evm.dusk-
|
22307
|
+
rpc: [ 'https://rpc.evm.dusk-3.devnet.astria.org' ],
|
22308
|
+
faucets: [ 'https://faucet.evm.dusk-3.devnet.astria.org/' ],
|
22290
22309
|
explorers: [
|
22291
22310
|
{
|
22292
22311
|
name: 'Astria EVM Dusknet Explorer',
|
22293
|
-
url: 'https://explorer.evm.dusk-
|
22312
|
+
url: 'https://explorer.evm.dusk-3.devnet.astria.org',
|
22294
22313
|
standard: 'EIP3091'
|
22295
22314
|
}
|
22296
22315
|
]
|