eth-chainlist 0.0.317 → 0.0.318
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 +16 -4
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
### 0.0.318 (2024-01-07)
|
4
|
+
|
5
|
+
|
6
|
+
### Maintenance
|
7
|
+
|
8
|
+
* **release:** 0.0.317 ([b433a52](https://github.com/poowf/eth-chainlist/commit/b433a5248bcebbce86a218e0a2b5ae1510f28f56))
|
9
|
+
* update chain data ([24cd2b8](https://github.com/poowf/eth-chainlist/commit/24cd2b8213a06e06ee472d966ccc6da8b404dc8a))
|
10
|
+
|
3
11
|
### 0.0.317 (2024-01-06)
|
4
12
|
|
5
13
|
|
package/data/chain.js
CHANGED
@@ -9662,7 +9662,13 @@ const chainArray = [
|
|
9662
9662
|
{
|
9663
9663
|
name: 'Centrifuge',
|
9664
9664
|
chain: 'CFG',
|
9665
|
-
|
9665
|
+
icon: 'centrifuge',
|
9666
|
+
rpc: [
|
9667
|
+
'wss://fullnode.parachain.centrifuge.io',
|
9668
|
+
'wss://centrifuge-parachain.api.onfinality.io/public-ws',
|
9669
|
+
'wss://centrifuge-rpc.dwellir.com',
|
9670
|
+
'wss://rpc-centrifuge.luckyfriday.io'
|
9671
|
+
],
|
9666
9672
|
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
9667
9673
|
faucets: [],
|
9668
9674
|
nativeCurrency: { name: 'Centrifuge', symbol: 'CFG', decimals: 18 },
|
@@ -9674,7 +9680,8 @@ const chainArray = [
|
|
9674
9680
|
{
|
9675
9681
|
name: 'subscan',
|
9676
9682
|
url: 'https://centrifuge.subscan.io',
|
9677
|
-
standard: 'EIP3091'
|
9683
|
+
standard: 'EIP3091',
|
9684
|
+
icon: 'subscan'
|
9678
9685
|
}
|
9679
9686
|
]
|
9680
9687
|
},
|
@@ -9863,7 +9870,11 @@ const chainArray = [
|
|
9863
9870
|
{
|
9864
9871
|
name: 'Altair',
|
9865
9872
|
chain: 'AIR',
|
9866
|
-
|
9873
|
+
icon: 'altair',
|
9874
|
+
rpc: [
|
9875
|
+
'wss://fullnode.altair.centrifuge.io',
|
9876
|
+
'wss://altair.api.onfinality.io/public-ws'
|
9877
|
+
],
|
9867
9878
|
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
9868
9879
|
faucets: [],
|
9869
9880
|
nativeCurrency: { name: 'Altair', symbol: 'AIR', decimals: 18 },
|
@@ -9875,6 +9886,7 @@ const chainArray = [
|
|
9875
9886
|
{
|
9876
9887
|
name: 'Algol',
|
9877
9888
|
chain: 'algol',
|
9889
|
+
status: 'deprecated',
|
9878
9890
|
rpc: [ 'wss://fullnode.algol.cntrfg.com' ],
|
9879
9891
|
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
9880
9892
|
faucets: [],
|
@@ -17422,7 +17434,7 @@ const chainArray = [
|
|
17422
17434
|
name: 'GoldXChain Mainnet',
|
17423
17435
|
chain: 'GoldX',
|
17424
17436
|
rpc: [ 'https://mainnet-rpc.goldxchain.io' ],
|
17425
|
-
faucets: [
|
17437
|
+
faucets: [],
|
17426
17438
|
nativeCurrency: { name: 'GoldX', symbol: 'GOLDX', decimals: 18 },
|
17427
17439
|
infoURL: 'https://goldxchain.io',
|
17428
17440
|
shortName: 'goldx',
|