eth-chainlist 0.0.152 → 0.0.153
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 +53 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
### 0.0.153 (2023-05-20)
|
4
|
+
|
5
|
+
|
6
|
+
### Maintenance
|
7
|
+
|
8
|
+
* **release:** 0.0.152 ([2ce4e58](https://github.com/poowf/eth-chainlist/commit/2ce4e58912ff136fbba78bb8593b6d4a5b2a6125))
|
9
|
+
* update chain data ([3332a0d](https://github.com/poowf/eth-chainlist/commit/3332a0dfe564b47442168afe05ac376f46fcf3a5))
|
10
|
+
|
3
11
|
### 0.0.152 (2023-05-19)
|
4
12
|
|
5
13
|
|
package/data/chain.js
CHANGED
@@ -681,7 +681,14 @@ const chainArray = [
|
|
681
681
|
infoURL: 'https://telos.net',
|
682
682
|
shortName: 'TelosEVMTestnet',
|
683
683
|
chainId: 41,
|
684
|
-
networkId: 41
|
684
|
+
networkId: 41,
|
685
|
+
explorers: [
|
686
|
+
{
|
687
|
+
name: 'teloscan',
|
688
|
+
url: 'https://testnet.teloscan.io',
|
689
|
+
standard: 'EIP3091'
|
690
|
+
}
|
691
|
+
]
|
685
692
|
},
|
686
693
|
{
|
687
694
|
name: 'Kovan',
|
@@ -3448,6 +3455,27 @@ const chainArray = [
|
|
3448
3455
|
}
|
3449
3456
|
]
|
3450
3457
|
},
|
3458
|
+
{
|
3459
|
+
name: 'Neurochain Testnet',
|
3460
|
+
chain: 'NCN',
|
3461
|
+
rpc: [ 'https://nc-rpc-test1.neurochain.io' ],
|
3462
|
+
faucets: [],
|
3463
|
+
nativeCurrency: { name: 'Neurochain', symbol: 'tNCN', decimals: 18 },
|
3464
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
3465
|
+
infoURL: 'https://www.neurochain.ai',
|
3466
|
+
shortName: 'ncnt',
|
3467
|
+
chainId: 303,
|
3468
|
+
networkId: 303,
|
3469
|
+
icon: 'neurochain',
|
3470
|
+
explorers: [
|
3471
|
+
{
|
3472
|
+
name: 'neuroscan',
|
3473
|
+
url: 'https://testnet.ncnscan.com',
|
3474
|
+
icon: 'neurochain',
|
3475
|
+
standard: 'EIP3091'
|
3476
|
+
}
|
3477
|
+
]
|
3478
|
+
},
|
3451
3479
|
{
|
3452
3480
|
name: 'Omax Mainnet',
|
3453
3481
|
chain: 'OMAX Chain',
|
@@ -3468,6 +3496,30 @@ const chainArray = [
|
|
3468
3496
|
}
|
3469
3497
|
]
|
3470
3498
|
},
|
3499
|
+
{
|
3500
|
+
name: 'Neurochain Mainnet',
|
3501
|
+
chain: 'NCN',
|
3502
|
+
rpc: [
|
3503
|
+
'https://nc-rpc-prd1.neurochain.io',
|
3504
|
+
'https://nc-rpc-prd2.neurochain.io'
|
3505
|
+
],
|
3506
|
+
faucets: [],
|
3507
|
+
nativeCurrency: { name: 'Neurochain', symbol: 'NCN', decimals: 18 },
|
3508
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
3509
|
+
infoURL: 'https://www.neurochain.ai',
|
3510
|
+
shortName: 'ncn',
|
3511
|
+
chainId: 313,
|
3512
|
+
networkId: 313,
|
3513
|
+
icon: 'neurochain',
|
3514
|
+
explorers: [
|
3515
|
+
{
|
3516
|
+
name: 'neuroscan',
|
3517
|
+
url: 'https://ncnscan.com',
|
3518
|
+
icon: 'neurochain',
|
3519
|
+
standard: 'EIP3091'
|
3520
|
+
}
|
3521
|
+
]
|
3522
|
+
},
|
3471
3523
|
{
|
3472
3524
|
name: 'Filecoin - Mainnet',
|
3473
3525
|
chain: 'FIL',
|