eth-chainlist 0.0.322 → 0.0.323
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 +8 -4
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
### 0.0.323 (2024-01-18)
|
4
|
+
|
5
|
+
|
6
|
+
### Maintenance
|
7
|
+
|
8
|
+
* **release:** 0.0.322 ([0793f95](https://github.com/poowf/eth-chainlist/commit/0793f95fa9886013c0528fb5296af9d0c1632f70))
|
9
|
+
* update chain data ([247e063](https://github.com/poowf/eth-chainlist/commit/247e06384d90d1cc986f8fb5cb4f67af9705ad99))
|
10
|
+
|
3
11
|
### 0.0.322 (2024-01-16)
|
4
12
|
|
5
13
|
|
package/data/chain.js
CHANGED
@@ -8463,19 +8463,23 @@ const chainArray = [
|
|
8463
8463
|
]
|
8464
8464
|
},
|
8465
8465
|
{
|
8466
|
-
name: 'BEVM',
|
8466
|
+
name: 'BEVM Canary',
|
8467
8467
|
chain: 'ChainX',
|
8468
|
-
rpc: [
|
8468
|
+
rpc: [
|
8469
|
+
'https://rpc-canary-1.bevm.io/',
|
8470
|
+
'https://rpc-canary-2.bevm.io/'
|
8471
|
+
],
|
8469
8472
|
faucets: [],
|
8470
8473
|
nativeCurrency: { name: 'BTC', symbol: 'BTC', decimals: 18 },
|
8471
8474
|
infoURL: 'https://chainx.org',
|
8472
8475
|
shortName: 'chainx',
|
8473
8476
|
chainId: 1501,
|
8474
8477
|
networkId: 1501,
|
8478
|
+
icon: 'bevmcanary',
|
8475
8479
|
explorers: [
|
8476
8480
|
{
|
8477
|
-
name: 'bevm scan',
|
8478
|
-
url: 'https://scan.bevm.io',
|
8481
|
+
name: 'bevm canary scan',
|
8482
|
+
url: 'https://scan-canary.bevm.io',
|
8479
8483
|
standard: 'none'
|
8480
8484
|
}
|
8481
8485
|
]
|