eth-chainlist 0.0.94 → 0.0.95

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 CHANGED
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ### 0.0.95 (2023-03-07)
4
+
5
+
6
+ ### Maintenance
7
+
8
+ * **release:** 0.0.94 ([2ac9159](https://github.com/poowf/eth-chainlist/commit/2ac9159ea2af977dafc1a09f0bdf47bce884277b))
9
+ * update chain data ([4f6bbf2](https://github.com/poowf/eth-chainlist/commit/4f6bbf254cade2c6b34ea32471590b8022c0f66b))
10
+
3
11
  ### 0.0.94 (2023-03-06)
4
12
 
5
13
 
package/data/chain.js CHANGED
@@ -7553,6 +7553,49 @@ const chainArray = [
7553
7553
  }
7554
7554
  ]
7555
7555
  },
7556
+ {
7557
+ name: 'Nahmii 3 Mainnet',
7558
+ chain: 'Nahmii',
7559
+ rpc: [],
7560
+ status: 'incubating',
7561
+ faucets: [],
7562
+ nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
7563
+ infoURL: 'https://nahmii.io',
7564
+ shortName: 'Nahmii3Mainnet',
7565
+ chainId: 4061,
7566
+ networkId: 4061,
7567
+ icon: 'nahmii',
7568
+ parent: {
7569
+ type: 'L2',
7570
+ chain: 'eip155-1',
7571
+ bridges: [ { url: 'https://bridge.nahmii.io' } ]
7572
+ }
7573
+ },
7574
+ {
7575
+ name: 'Nahmii 3 Testnet',
7576
+ chain: 'Nahmii',
7577
+ rpc: [ 'https://ngeth.testnet.n3.nahmii.io' ],
7578
+ faucets: [],
7579
+ nativeCurrency: { name: 'Goerli Ether', symbol: 'ETH', decimals: 18 },
7580
+ infoURL: 'https://nahmii.io',
7581
+ shortName: 'Nahmii3Testnet',
7582
+ chainId: 4062,
7583
+ networkId: 4062,
7584
+ icon: 'nahmii',
7585
+ explorers: [
7586
+ {
7587
+ name: 'Nahmii 3 Testnet Explorer',
7588
+ url: 'https://explorer.testnet.n3.nahmii.io',
7589
+ icon: 'nahmii',
7590
+ standard: 'EIP3091'
7591
+ }
7592
+ ],
7593
+ parent: {
7594
+ type: 'L2',
7595
+ chain: 'eip155-3',
7596
+ bridges: [ { url: 'https://bridge.testnet.n3.nahmii.io' } ]
7597
+ }
7598
+ },
7556
7599
  {
7557
7600
  name: 'Bitindi Testnet',
7558
7601
  chain: 'BNI',
@@ -13592,7 +13635,11 @@ const chainArray = [
13592
13635
  name: 'Sepolia',
13593
13636
  title: 'Ethereum Testnet Sepolia',
13594
13637
  chain: 'ETH',
13595
- rpc: [ 'https://rpc.sepolia.org', 'https://rpc-sepolia.rockx.com' ],
13638
+ rpc: [
13639
+ 'https://rpc.sepolia.org',
13640
+ 'https://rpc2.sepolia.org',
13641
+ 'https://rpc-sepolia.rockx.com'
13642
+ ],
13596
13643
  faucets: [
13597
13644
  'http://fauceth.komputing.org?chain=11155111&address=${ADDRESS}'
13598
13645
  ],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eth-chainlist",
3
- "version": "0.0.94",
3
+ "version": "0.0.95",
4
4
  "description": "List of EVM Chains",
5
5
  "main": "index.js",
6
6
  "scripts": {