eth-chainlist 0.0.84 → 0.0.85
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 +38 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
### 0.0.85 (2023-02-23)
|
4
|
+
|
5
|
+
|
6
|
+
### Maintenance
|
7
|
+
|
8
|
+
* **release:** 0.0.84 ([5b6907d](https://github.com/poowf/eth-chainlist/commit/5b6907d1162bc4b5d7c3cc2199f8630fb27c0733))
|
9
|
+
* update chain data ([d937916](https://github.com/poowf/eth-chainlist/commit/d93791672276e156a2f8e3285754af84b36f4050))
|
10
|
+
|
3
11
|
### 0.0.84 (2023-02-22)
|
4
12
|
|
5
13
|
|
package/data/chain.js
CHANGED
@@ -2013,6 +2013,25 @@ const chainArray = [
|
|
2013
2013
|
networkId: 116,
|
2014
2014
|
explorers: []
|
2015
2015
|
},
|
2016
|
+
{
|
2017
|
+
name: 'Arcology Testnet',
|
2018
|
+
chain: 'Arcology',
|
2019
|
+
icon: 'acolicon',
|
2020
|
+
rpc: [ 'https://testnet.arcology.network/rpc' ],
|
2021
|
+
faucets: [],
|
2022
|
+
nativeCurrency: { name: 'Arcology Coin', symbol: 'Acol', decimals: 18 },
|
2023
|
+
infoURL: 'https://arcology.network/',
|
2024
|
+
shortName: 'arcology',
|
2025
|
+
chainId: 118,
|
2026
|
+
networkId: 118,
|
2027
|
+
explorers: [
|
2028
|
+
{
|
2029
|
+
name: 'arcology',
|
2030
|
+
url: 'https://testnet.arcology.network/explorer',
|
2031
|
+
standard: 'none'
|
2032
|
+
}
|
2033
|
+
]
|
2034
|
+
},
|
2016
2035
|
{
|
2017
2036
|
name: 'ENULS Mainnet',
|
2018
2037
|
chain: 'ENULS',
|
@@ -7856,6 +7875,25 @@ const chainArray = [
|
|
7856
7875
|
}
|
7857
7876
|
]
|
7858
7877
|
},
|
7878
|
+
{
|
7879
|
+
name: 'Hika Devnet',
|
7880
|
+
chain: 'Hika Network Testnet',
|
7881
|
+
icon: 'hik',
|
7882
|
+
rpc: [ 'https://rpc-testnet.hika.network/' ],
|
7883
|
+
faucets: [],
|
7884
|
+
nativeCurrency: { name: 'Hik Token', symbol: 'HIK', decimals: 18 },
|
7885
|
+
infoURL: 'https://hika.network/',
|
7886
|
+
shortName: 'hik',
|
7887
|
+
chainId: 5729,
|
7888
|
+
networkId: 5729,
|
7889
|
+
explorers: [
|
7890
|
+
{
|
7891
|
+
name: 'Hika Network Testnet Explorer',
|
7892
|
+
url: 'https://scan-testnet.hika.network',
|
7893
|
+
standard: 'none'
|
7894
|
+
}
|
7895
|
+
]
|
7896
|
+
},
|
7859
7897
|
{
|
7860
7898
|
name: 'Ganache',
|
7861
7899
|
title: 'Ganache GUI Ethereum Testnet',
|