eth-chainlist 0.0.118 → 0.0.119
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 +20 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
### 0.0.119 (2023-04-05)
|
4
|
+
|
5
|
+
|
6
|
+
### Maintenance
|
7
|
+
|
8
|
+
* **release:** 0.0.118 ([ef1f738](https://github.com/poowf/eth-chainlist/commit/ef1f738fe5dcfd7ec78438263a2f3dd7902615b3))
|
9
|
+
* update chain data ([33ec15e](https://github.com/poowf/eth-chainlist/commit/33ec15e1ccce476d92003364c540fdc3a5d92cf0))
|
10
|
+
|
3
11
|
### 0.0.118 (2023-04-04)
|
4
12
|
|
5
13
|
|
package/data/chain.js
CHANGED
@@ -2670,6 +2670,24 @@ const chainArray = [
|
|
2670
2670
|
explorers: [],
|
2671
2671
|
status: 'incubating'
|
2672
2672
|
},
|
2673
|
+
{
|
2674
|
+
name: 'Neutrinos TestNet',
|
2675
|
+
chain: 'NEUTR',
|
2676
|
+
rpc: [ 'https://testnet-rpc.neutrinoschain.com' ],
|
2677
|
+
faucets: [ 'https://neutrinoschain.com/faucet' ],
|
2678
|
+
nativeCurrency: { name: 'Neutrinos', symbol: 'NEUTR', decimals: 18 },
|
2679
|
+
infoURL: 'https://docs.neutrinoschain.com',
|
2680
|
+
shortName: 'NEUTR',
|
2681
|
+
chainId: 197,
|
2682
|
+
networkId: 197,
|
2683
|
+
explorers: [
|
2684
|
+
{
|
2685
|
+
name: 'blockscout',
|
2686
|
+
url: 'https://testnet.neutrinoschain.com',
|
2687
|
+
standard: 'EIP3091'
|
2688
|
+
}
|
2689
|
+
]
|
2690
|
+
},
|
2673
2691
|
{
|
2674
2692
|
name: 'BitTorrent Chain Mainnet',
|
2675
2693
|
chain: 'BTTC',
|
@@ -7333,10 +7351,12 @@ const chainArray = [
|
|
7333
7351
|
rpc: [ 'https://api.aqua.wemixkanvas.io' ],
|
7334
7352
|
faucets: [],
|
7335
7353
|
infoURL: 'https://wemixkanvas.io',
|
7354
|
+
icon: 'wemixkanvas',
|
7336
7355
|
explorers: [
|
7337
7356
|
{
|
7338
7357
|
name: 'blockscout',
|
7339
7358
|
url: 'https://blockscout.aqua.wemixkanvas.io',
|
7359
|
+
icon: 'wemixkanvas',
|
7340
7360
|
standard: 'EIP3091'
|
7341
7361
|
}
|
7342
7362
|
],
|