eth-chainlist 0.0.627 → 0.0.628
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 +10 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
### 0.0.628 (2025-03-03)
|
4
|
+
|
5
|
+
|
6
|
+
### Maintenance
|
7
|
+
|
8
|
+
* **release:** 0.0.627 ([02f0aed](https://github.com/poowf/eth-chainlist/commit/02f0aed938df6d5206469b863c0f9c4bc7139f31))
|
9
|
+
* update chain data ([1608be0](https://github.com/poowf/eth-chainlist/commit/1608be01d80d0bf4e02a411adb6bc92c242577e8))
|
10
|
+
|
3
11
|
### 0.0.627 (2025-03-02)
|
4
12
|
|
5
13
|
|
package/data/chain.js
CHANGED
@@ -4191,10 +4191,16 @@ const chainArray = [
|
|
4191
4191
|
name: 'Bitnet',
|
4192
4192
|
chain: 'BTN',
|
4193
4193
|
icon: 'bitnet',
|
4194
|
-
rpc: [
|
4194
|
+
rpc: [
|
4195
|
+
'https://rpc.bitnet.money',
|
4196
|
+
'https://rpc.btnscan.com',
|
4197
|
+
'https://rpc.btn.network',
|
4198
|
+
'https://rpc.bitnetmoney.com',
|
4199
|
+
'https://rpc.btn-network.org'
|
4200
|
+
],
|
4195
4201
|
faucets: [],
|
4196
4202
|
nativeCurrency: { name: 'Bitnet', symbol: 'BTN', decimals: 18 },
|
4197
|
-
infoURL: 'https://bitnet.
|
4203
|
+
infoURL: 'https://bitnet.technology',
|
4198
4204
|
shortName: 'BTN',
|
4199
4205
|
chainId: 210,
|
4200
4206
|
networkId: 210,
|
@@ -5842,7 +5848,7 @@ const chainArray = [
|
|
5842
5848
|
rpc: [ 'https://testapi.omaxray.com' ],
|
5843
5849
|
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
5844
5850
|
faucets: [ 'https://faucet.omaxray.com/' ],
|
5845
|
-
nativeCurrency: { name: 'OMAX TESTCOIN', symbol: '
|
5851
|
+
nativeCurrency: { name: 'OMAX TESTCOIN', symbol: 'OMAX', decimals: 18 },
|
5846
5852
|
infoURL: 'https://www.omaxcoin.com/',
|
5847
5853
|
shortName: 'omaxt',
|
5848
5854
|
chainId: 332,
|
@@ -5852,6 +5858,7 @@ const chainArray = [
|
|
5852
5858
|
{
|
5853
5859
|
name: 'Omax Chain Explorer',
|
5854
5860
|
url: 'https://testnet.omaxscan.com',
|
5861
|
+
icon: 'omaxray',
|
5855
5862
|
standard: 'EIP3091'
|
5856
5863
|
}
|
5857
5864
|
]
|