eth-chainlist 0.0.95 → 0.0.96
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 +29 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
### 0.0.96 (2023-03-09)
|
4
|
+
|
5
|
+
|
6
|
+
### Maintenance
|
7
|
+
|
8
|
+
* **release:** 0.0.95 ([b62c4a5](https://github.com/poowf/eth-chainlist/commit/b62c4a5519222cc306a7c18f2d78e4c020b6e8df))
|
9
|
+
* update chain data ([dddb1e0](https://github.com/poowf/eth-chainlist/commit/dddb1e06e2542b30bb953d9f974e3c6395a50488))
|
10
|
+
|
3
11
|
### 0.0.95 (2023-03-07)
|
4
12
|
|
5
13
|
|
package/data/chain.js
CHANGED
@@ -7,7 +7,8 @@ const chainArray = [
|
|
7
7
|
'https://mainnet.infura.io/v3/${INFURA_API_KEY}',
|
8
8
|
'wss://mainnet.infura.io/ws/v3/${INFURA_API_KEY}',
|
9
9
|
'https://api.mycryptoapi.com/eth',
|
10
|
-
'https://cloudflare-eth.com'
|
10
|
+
'https://cloudflare-eth.com',
|
11
|
+
'https://ethereum.publicnode.com'
|
11
12
|
],
|
12
13
|
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
13
14
|
faucets: [],
|
@@ -988,6 +989,7 @@ const chainArray = [
|
|
988
989
|
'https://bsc-dataseed2.ninicoin.io',
|
989
990
|
'https://bsc-dataseed3.ninicoin.io',
|
990
991
|
'https://bsc-dataseed4.ninicoin.io',
|
992
|
+
'https://bsc.publicnode.com',
|
991
993
|
'wss://bsc-ws-node.nariox.org'
|
992
994
|
],
|
993
995
|
faucets: [ 'https://free-online-app.com/faucet-for-eth-evm-chains/' ],
|
@@ -2739,7 +2741,7 @@ const chainArray = [
|
|
2739
2741
|
{
|
2740
2742
|
name: 'Fantom Opera',
|
2741
2743
|
chain: 'FTM',
|
2742
|
-
rpc: [ 'https://rpc.ftm.tools' ],
|
2744
|
+
rpc: [ 'https://rpc.ftm.tools', 'https://fantom.publicnode.com' ],
|
2743
2745
|
faucets: [ 'https://free-online-app.com/faucet-for-eth-evm-chains/' ],
|
2744
2746
|
nativeCurrency: { name: 'Fantom', symbol: 'FTM', decimals: 18 },
|
2745
2747
|
infoURL: 'https://fantom.foundation',
|
@@ -5880,6 +5882,27 @@ const chainArray = [
|
|
5880
5882
|
chainId: 1708,
|
5881
5883
|
networkId: 1708
|
5882
5884
|
},
|
5885
|
+
{
|
5886
|
+
name: 'Palette Chain Mainnet',
|
5887
|
+
chain: 'PLT',
|
5888
|
+
rpc: [ 'https://palette-rpc.com:22000' ],
|
5889
|
+
faucets: [],
|
5890
|
+
nativeCurrency: { name: 'Palette Token', symbol: 'PLT', decimals: 18 },
|
5891
|
+
features: [],
|
5892
|
+
infoURL: 'https://hashpalette.com/',
|
5893
|
+
shortName: 'PaletteChain',
|
5894
|
+
chainId: 1718,
|
5895
|
+
networkId: 1718,
|
5896
|
+
icon: 'PLT',
|
5897
|
+
explorers: [
|
5898
|
+
{
|
5899
|
+
name: 'Palettescan',
|
5900
|
+
url: 'https://palettescan.com',
|
5901
|
+
icon: 'PLT',
|
5902
|
+
standard: 'none'
|
5903
|
+
}
|
5904
|
+
]
|
5905
|
+
},
|
5883
5906
|
{
|
5884
5907
|
name: 'Kerleano',
|
5885
5908
|
title: 'Proof of Carbon Reduction testnet',
|
@@ -10737,7 +10760,10 @@ const chainArray = [
|
|
10737
10760
|
name: 'Avalanche C-Chain',
|
10738
10761
|
chain: 'AVAX',
|
10739
10762
|
icon: 'avax',
|
10740
|
-
rpc: [
|
10763
|
+
rpc: [
|
10764
|
+
'https://api.avax.network/ext/bc/C/rpc',
|
10765
|
+
'https://avalanche-c-chain.publicnode.com'
|
10766
|
+
],
|
10741
10767
|
features: [ { name: 'EIP1559' } ],
|
10742
10768
|
faucets: [ 'https://free-online-app.com/faucet-for-eth-evm-chains/' ],
|
10743
10769
|
nativeCurrency: { name: 'Avalanche', symbol: 'AVAX', decimals: 18 },
|