eth-chainlist 0.0.389 → 0.0.390

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.390 (2024-04-30)
4
+
5
+
6
+ ### Maintenance
7
+
8
+ * **release:** 0.0.389 ([4a4154c](https://github.com/poowf/eth-chainlist/commit/4a4154cde98d462ecfae18b7507cb5f22d7d4260))
9
+ * update chain data ([2a71b98](https://github.com/poowf/eth-chainlist/commit/2a71b986602bf9f413cf21d83e1968756dc21252))
10
+
3
11
  ### 0.0.389 (2024-04-29)
4
12
 
5
13
 
package/data/chain.js CHANGED
@@ -3199,6 +3199,32 @@ const chainArray = [
3199
3199
  chainId: 163,
3200
3200
  networkId: 163
3201
3201
  },
3202
+ {
3203
+ name: 'Omni Testnet (incubating)',
3204
+ chain: 'Omni',
3205
+ status: 'incubating',
3206
+ rpc: [],
3207
+ features: [ { name: 'EIP155' } ],
3208
+ faucets: [],
3209
+ nativeCurrency: { name: 'Omni', symbol: 'OMNI', decimals: 18 },
3210
+ infoURL: 'https://docs.omni.network',
3211
+ shortName: 'omni_testnet_164',
3212
+ chainId: 164,
3213
+ networkId: 164,
3214
+ slip44: 1,
3215
+ explorers: [
3216
+ {
3217
+ name: 'Omni X-Explorer',
3218
+ url: 'https://explorer.testnet.omni.network',
3219
+ standard: 'none'
3220
+ },
3221
+ {
3222
+ name: 'Omni EVM Explorer on Blockscout',
3223
+ url: 'https://omni-testnet.blockscout.com',
3224
+ standard: 'EIP3091'
3225
+ }
3226
+ ]
3227
+ },
3202
3228
  {
3203
3229
  name: 'Omni Testnet',
3204
3230
  chain: 'Omni',
@@ -16255,6 +16281,25 @@ const chainArray = [
16255
16281
  }
16256
16282
  ]
16257
16283
  },
16284
+ {
16285
+ name: 'GDCC TESTNET',
16286
+ chain: 'GDCC',
16287
+ icon: 'gdcc',
16288
+ rpc: [ 'https://testnet-rpc1.gdccscan.io' ],
16289
+ faucets: [],
16290
+ nativeCurrency: { name: 'GDCC', symbol: 'GDCC', decimals: 18 },
16291
+ infoURL: 'https://gdcchain.com',
16292
+ shortName: 'GDCC',
16293
+ chainId: 7775,
16294
+ networkId: 7775,
16295
+ explorers: [
16296
+ {
16297
+ name: 'GDCC',
16298
+ url: 'https://testnet.gdccscan.io',
16299
+ standard: 'none'
16300
+ }
16301
+ ]
16302
+ },
16258
16303
  {
16259
16304
  name: 'Rise of the Warbots Testnet',
16260
16305
  chain: 'nmactest',
@@ -23810,6 +23855,33 @@ const chainArray = [
23810
23855
  }
23811
23856
  ]
23812
23857
  },
23858
+ {
23859
+ name: 'Camp Testnet',
23860
+ chain: 'ETH',
23861
+ icon: 'camp',
23862
+ features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
23863
+ rpc: [ 'https://rpc-camp-network-4xje7wy105.t.conduit.xyz' ],
23864
+ faucets: [ 'https://www.campnetwork.xyz/faucet' ],
23865
+ nativeCurrency: { name: 'Ethereum', symbol: 'ETH', decimals: 18 },
23866
+ infoURL: 'https://campaign-1.gitbook.io/camp-technical-docså',
23867
+ shortName: 'camp',
23868
+ chainId: 90354,
23869
+ networkId: 90354,
23870
+ slip44: 1,
23871
+ explorers: [
23872
+ {
23873
+ name: 'blockscout',
23874
+ url: 'https://explorerl2new-camp-network-4xje7wy105.t.conduit.xyz',
23875
+ icon: 'blockscout',
23876
+ standard: 'EIP3091'
23877
+ }
23878
+ ],
23879
+ parent: {
23880
+ type: 'L2',
23881
+ chain: 'eip155-1',
23882
+ bridges: [ { url: 'https://camp-testnet-bridge.vercel.app/' } ]
23883
+ }
23884
+ },
23813
23885
  {
23814
23886
  name: 'Nautilus Trition Chain',
23815
23887
  title: 'Nautilus Trition Testnet',
@@ -27294,6 +27366,27 @@ const chainArray = [
27294
27366
  }
27295
27367
  ]
27296
27368
  },
27369
+ {
27370
+ name: 'AmChain',
27371
+ title: 'AMC',
27372
+ chain: 'AmChain',
27373
+ icon: 'amc',
27374
+ rpc: [ 'https://node1.amchain.net' ],
27375
+ features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
27376
+ faucets: [],
27377
+ nativeCurrency: { name: 'AMC', symbol: 'AMC', decimals: 18 },
27378
+ infoURL: 'https://hewe.io/',
27379
+ shortName: 'AMC',
27380
+ chainId: 999999,
27381
+ networkId: 999999,
27382
+ explorers: [
27383
+ {
27384
+ name: 'AMCAmChain explorer',
27385
+ url: 'https://explorer.amchain.net',
27386
+ standard: 'none'
27387
+ }
27388
+ ]
27389
+ },
27297
27390
  {
27298
27391
  name: 'Netmind Chain Testnet',
27299
27392
  title: 'NetMind Chain Testnet',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eth-chainlist",
3
- "version": "0.0.389",
3
+ "version": "0.0.390",
4
4
  "description": "List of EVM Chains",
5
5
  "main": "index.js",
6
6
  "scripts": {