eth-chainlist 0.0.253 → 0.0.254
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 +26 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
### 0.0.254 (2023-10-09)
|
4
|
+
|
5
|
+
|
6
|
+
### Maintenance
|
7
|
+
|
8
|
+
* **release:** 0.0.253 ([c351707](https://github.com/poowf/eth-chainlist/commit/c35170781006f50737324b9fa1466ff1691b38d6))
|
9
|
+
* update chain data ([8e9533b](https://github.com/poowf/eth-chainlist/commit/8e9533bcc6938ddf0d5d972b884974808cfdeabc))
|
10
|
+
|
3
11
|
### 0.0.253 (2023-10-08)
|
4
12
|
|
5
13
|
|
package/data/chain.js
CHANGED
@@ -3699,6 +3699,26 @@ const chainArray = [
|
|
3699
3699
|
bridges: [ { url: 'https://gateway.boba.network' } ]
|
3700
3700
|
}
|
3701
3701
|
},
|
3702
|
+
{
|
3703
|
+
name: 'Orderly Mainnet',
|
3704
|
+
chain: 'ETH',
|
3705
|
+
rpc: [ 'http://rpc.orderly.network' ],
|
3706
|
+
faucets: [],
|
3707
|
+
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
3708
|
+
infoURL: 'www.orderly.network',
|
3709
|
+
shortName: 'orderly',
|
3710
|
+
chainId: 291,
|
3711
|
+
networkId: 291,
|
3712
|
+
icon: 'orderly',
|
3713
|
+
explorers: [
|
3714
|
+
{
|
3715
|
+
name: 'orderlyscout',
|
3716
|
+
url: 'https://explorer.orderly.network',
|
3717
|
+
icon: 'blockscout',
|
3718
|
+
standard: 'EIP3091'
|
3719
|
+
}
|
3720
|
+
]
|
3721
|
+
},
|
3702
3722
|
{
|
3703
3723
|
name: 'Hedera Mainnet',
|
3704
3724
|
chain: 'Hedera',
|
@@ -16301,6 +16321,12 @@ const chainArray = [
|
|
16301
16321
|
url: 'https://explorer.linea.build',
|
16302
16322
|
standard: 'EIP3091',
|
16303
16323
|
icon: 'linea'
|
16324
|
+
},
|
16325
|
+
{
|
16326
|
+
name: 'L2scan',
|
16327
|
+
url: 'https://linea.l2scan.co',
|
16328
|
+
standard: 'EIP3091',
|
16329
|
+
icon: 'linea'
|
16304
16330
|
}
|
16305
16331
|
],
|
16306
16332
|
status: 'active'
|