eth-chainlist 0.0.396 → 0.0.397

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.397 (2024-05-07)
4
+
5
+
6
+ ### Maintenance
7
+
8
+ * **release:** 0.0.396 ([499ce4c](https://github.com/poowf/eth-chainlist/commit/499ce4c7890fe2bc3aa7ad34662b107ae550634b))
9
+ * update chain data ([5b70686](https://github.com/poowf/eth-chainlist/commit/5b70686d50db0987cd981c817fd1b70498f7483e))
10
+
3
11
  ### 0.0.396 (2024-05-06)
4
12
 
5
13
 
package/data/chain.js CHANGED
@@ -25535,8 +25535,8 @@ const chainArray = [
25535
25535
  name: 'Mind Network Testnet',
25536
25536
  chain: 'FHET',
25537
25537
  rpc: [
25538
- 'https://rpc_testnet.mindnetwork.xyz',
25539
- 'wss://rpc_testnet.mindnetwork.xyz'
25538
+ 'https://rpc-testnet.mindnetwork.xyz',
25539
+ 'wss://rpc-testnet.mindnetwork.xyz'
25540
25540
  ],
25541
25541
  faucets: [],
25542
25542
  nativeCurrency: { name: 'FHE', symbol: 'FHE', decimals: 18 },
@@ -26243,6 +26243,25 @@ const chainArray = [
26243
26243
  ],
26244
26244
  parent: { type: 'L2', chain: 'eip155-11155111' }
26245
26245
  },
26246
+ {
26247
+ name: 'One World Chain Mainnet',
26248
+ chain: 'One World Chain',
26249
+ icon: 'oneWorldChainIcon',
26250
+ rpc: [ 'https://mainnet-rpc.oneworldchain.org' ],
26251
+ faucets: [],
26252
+ nativeCurrency: { name: 'OWCT', symbol: 'OWCT', decimals: 18 },
26253
+ infoURL: 'https://oneworldchain.org',
26254
+ shortName: 'OWCTm',
26255
+ chainId: 309075,
26256
+ networkId: 309075,
26257
+ explorers: [
26258
+ {
26259
+ name: 'One World Chain Mainnet Explorer',
26260
+ url: 'https://mainnet.oneworldchain.org',
26261
+ standard: 'EIP3091'
26262
+ }
26263
+ ]
26264
+ },
26246
26265
  {
26247
26266
  name: 'SaharaAI Testnet',
26248
26267
  chain: 'Sahara',
@@ -26305,6 +26324,27 @@ const chainArray = [
26305
26324
  }
26306
26325
  ]
26307
26326
  },
26327
+ {
26328
+ name: 'Parex Mainnet',
26329
+ title: 'Parex Mainnet',
26330
+ chain: 'Parex',
26331
+ rpc: [ 'https://mainnet-rpc.parex.network' ],
26332
+ faucets: [],
26333
+ nativeCurrency: { name: 'PAREX', symbol: 'PRX', decimals: 18 },
26334
+ infoURL: 'https://parex.network',
26335
+ shortName: 'parex',
26336
+ chainId: 322202,
26337
+ networkId: 322202,
26338
+ icon: 'parexmain',
26339
+ explorers: [
26340
+ {
26341
+ name: 'Parex Mainnet Explorer',
26342
+ url: 'https://scan.parex.network',
26343
+ icon: 'parexmain',
26344
+ standard: 'EIP3091'
26345
+ }
26346
+ ]
26347
+ },
26308
26348
  {
26309
26349
  name: 'Bloom Genesis Testnet',
26310
26350
  chain: 'Bloom',
@@ -27157,6 +27197,25 @@ const chainArray = [
27157
27197
  }
27158
27198
  ]
27159
27199
  },
27200
+ {
27201
+ name: 'One World Chain Testnet',
27202
+ chain: 'One World Chain',
27203
+ icon: 'oneWorldChainIcon',
27204
+ rpc: [ 'https://testnet-rpc.oneworldchain.org' ],
27205
+ faucets: [ 'https://faucet.oneworldchain.org' ],
27206
+ nativeCurrency: { name: 'OWCT', symbol: 'OWCT', decimals: 18 },
27207
+ infoURL: 'https://oneworldchain.org',
27208
+ shortName: 'OWCTt',
27209
+ chainId: 552981,
27210
+ networkId: 552981,
27211
+ explorers: [
27212
+ {
27213
+ name: 'One World Chain Testnet Explorer',
27214
+ url: 'https://testnet.oneworldchain.org',
27215
+ standard: 'EIP3091'
27216
+ }
27217
+ ]
27218
+ },
27160
27219
  {
27161
27220
  name: 'Eclipse Testnet',
27162
27221
  chain: 'ECLIPSE',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eth-chainlist",
3
- "version": "0.0.396",
3
+ "version": "0.0.397",
4
4
  "description": "List of EVM Chains",
5
5
  "main": "index.js",
6
6
  "scripts": {