eth-chainlist 0.0.95 → 0.0.97
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 +16 -0
- package/data/chain.js +31 -5
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,21 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
### 0.0.97 (2023-03-10)
|
4
|
+
|
5
|
+
|
6
|
+
### Maintenance
|
7
|
+
|
8
|
+
* **release:** 0.0.96 ([6103f43](https://github.com/poowf/eth-chainlist/commit/6103f4370f994816770e991229790eb4b9b33750))
|
9
|
+
* update chain data ([bc0ddae](https://github.com/poowf/eth-chainlist/commit/bc0ddae0e290a6c4fabd7cfecdcad3c16c3692f0))
|
10
|
+
|
11
|
+
### 0.0.96 (2023-03-09)
|
12
|
+
|
13
|
+
|
14
|
+
### Maintenance
|
15
|
+
|
16
|
+
* **release:** 0.0.95 ([b62c4a5](https://github.com/poowf/eth-chainlist/commit/b62c4a5519222cc306a7c18f2d78e4c020b6e8df))
|
17
|
+
* update chain data ([dddb1e0](https://github.com/poowf/eth-chainlist/commit/dddb1e06e2542b30bb953d9f974e3c6395a50488))
|
18
|
+
|
3
19
|
### 0.0.95 (2023-03-07)
|
4
20
|
|
5
21
|
|
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: [],
|
@@ -415,7 +416,7 @@ const chainArray = [
|
|
415
416
|
{
|
416
417
|
name: 'Cronos Mainnet Beta',
|
417
418
|
chain: 'CRO',
|
418
|
-
rpc: [ 'https://evm.cronos.org' ],
|
419
|
+
rpc: [ 'https://evm.cronos.org', 'https://cronos-evm.publicnode.com' ],
|
419
420
|
features: [ { name: 'EIP1559' } ],
|
420
421
|
faucets: [],
|
421
422
|
nativeCurrency: { name: 'Cronos', symbol: 'CRO', decimals: 18 },
|
@@ -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',
|
@@ -8766,7 +8789,7 @@ const chainArray = [
|
|
8766
8789
|
{
|
8767
8790
|
name: 'TMY Chain',
|
8768
8791
|
chain: 'TMY',
|
8769
|
-
icon: '
|
8792
|
+
icon: 'tmychain',
|
8770
8793
|
rpc: [ 'https://node1.tmyblockchain.org/rpc' ],
|
8771
8794
|
faucets: [ 'https://faucet.tmychain.org/' ],
|
8772
8795
|
nativeCurrency: { name: 'TMY', symbol: 'TMY', decimals: 18 },
|
@@ -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 },
|