eth-chainlist 0.0.386 → 0.0.387

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.387 (2024-04-25)
4
+
5
+
6
+ ### Maintenance
7
+
8
+ * **release:** 0.0.386 ([a1f0b02](https://github.com/poowf/eth-chainlist/commit/a1f0b025fe058734977a9114fb3819e88d414f3c))
9
+ * update chain data ([6188239](https://github.com/poowf/eth-chainlist/commit/6188239dc1e9d147e7a7791ca7a2d65d5da9beac))
10
+
3
11
  ### 0.0.386 (2024-04-24)
4
12
 
5
13
 
package/data/chain.js CHANGED
@@ -8183,7 +8183,7 @@ const chainArray = [
8183
8183
  'https://evm-toolkit.evm.testnet.shimmer.network',
8184
8184
  'https://evm-faucet.testnet.shimmer.network'
8185
8185
  ],
8186
- nativeCurrency: { name: 'SMR', symbol: 'SMR', decimals: 6 },
8186
+ nativeCurrency: { name: 'SMR', symbol: 'SMR', decimals: 18 },
8187
8187
  infoURL: 'https://shimmer.network',
8188
8188
  shortName: 'shimmerevm-testnet',
8189
8189
  chainId: 1073,
@@ -8208,7 +8208,14 @@ const chainArray = [
8208
8208
  infoURL: 'https://www.iota.org',
8209
8209
  shortName: 'iotaevm-testnet',
8210
8210
  chainId: 1075,
8211
- networkId: 1075
8211
+ networkId: 1075,
8212
+ explorers: [
8213
+ {
8214
+ name: 'explorer',
8215
+ url: 'https://explorer.evm.testnet.iotaledger.net',
8216
+ standard: 'EIP3091'
8217
+ }
8218
+ ]
8212
8219
  },
8213
8220
  {
8214
8221
  name: 'Mintara Testnet',
@@ -16922,7 +16929,10 @@ const chainArray = [
16922
16929
  name: 'IOTA EVM',
16923
16930
  title: 'IOTA EVM',
16924
16931
  chain: 'IOTA EVM',
16925
- rpc: [ 'https://json-rpc.evm.iotaledger.net' ],
16932
+ rpc: [
16933
+ 'https://json-rpc.evm.iotaledger.net',
16934
+ 'https://ws.json-rpc.evm.iotaledger.net'
16935
+ ],
16926
16936
  faucets: [],
16927
16937
  nativeCurrency: { name: 'IOTA', symbol: 'IOTA', decimals: 18 },
16928
16938
  infoURL: 'https://www.iota.org',
@@ -16933,7 +16943,7 @@ const chainArray = [
16933
16943
  explorers: [
16934
16944
  {
16935
16945
  name: 'explorer',
16936
- url: 'https://iota-evm.blockscout.com',
16946
+ url: 'https://explorer.evm.iota.org',
16937
16947
  icon: 'iotaevm',
16938
16948
  standard: 'EIP3091'
16939
16949
  }
@@ -20262,6 +20272,32 @@ const chainArray = [
20262
20272
  }
20263
20273
  ]
20264
20274
  },
20275
+ {
20276
+ name: 'Nanon Sepolia',
20277
+ title: 'Nanon Sepolia Rollup Testnet',
20278
+ chain: 'ETH',
20279
+ rpc: [ 'https://sepolia-rpc.nanon.network' ],
20280
+ faucets: [],
20281
+ nativeCurrency: { name: 'Sepolia Ether', symbol: 'ETH', decimals: 18 },
20282
+ infoURL: 'https://www.nanon.network',
20283
+ shortName: 'Nanon-Testnet',
20284
+ chainId: 27483,
20285
+ networkId: 27483,
20286
+ slip44: 1,
20287
+ icon: 'nanon',
20288
+ explorers: [
20289
+ {
20290
+ name: 'Nanon Sepolia Rollup Testnet Explorer',
20291
+ url: 'https://sepolia-explorer.nanon.network',
20292
+ standard: 'EIP3091'
20293
+ }
20294
+ ],
20295
+ parent: {
20296
+ type: 'L2',
20297
+ chain: 'eip155-11155111',
20298
+ bridges: [ { url: 'https://sepolia-bridge.nanon.network' } ]
20299
+ }
20300
+ },
20265
20301
  {
20266
20302
  name: 'Vizing Mainnet',
20267
20303
  title: 'Vizing Mainnet',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eth-chainlist",
3
- "version": "0.0.386",
3
+ "version": "0.0.387",
4
4
  "description": "List of EVM Chains",
5
5
  "main": "index.js",
6
6
  "scripts": {