eth-chainlist 0.0.484 → 0.0.486

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/data/chain.js +101 -23
  3. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # Changelog
2
2
 
3
+ ### 0.0.486 (2024-09-07)
4
+
5
+
6
+ ### Maintenance
7
+
8
+ * **release:** 0.0.485 ([d0ea043](https://github.com/poowf/eth-chainlist/commit/d0ea04378bb4a001c879af87d9c993d468050e8c))
9
+ * update chain data ([2c06914](https://github.com/poowf/eth-chainlist/commit/2c069148f4dbf080d9c4e55e72e9b34265007c95))
10
+
11
+ ### 0.0.485 (2024-09-06)
12
+
13
+
14
+ ### Maintenance
15
+
16
+ * **release:** 0.0.484 ([016a3c5](https://github.com/poowf/eth-chainlist/commit/016a3c525d10d70bed0714df6ebaeb8145e637b5))
17
+ * update chain data ([da8c955](https://github.com/poowf/eth-chainlist/commit/da8c955709bf177248fad20a71cb91f918bb6c7a))
18
+
3
19
  ### 0.0.484 (2024-09-05)
4
20
 
5
21
 
package/data/chain.js CHANGED
@@ -6393,7 +6393,7 @@ const chainArray = [
6393
6393
  ]
6394
6394
  },
6395
6395
  {
6396
- name: 'Testnet',
6396
+ name: 'EVM on Flow (Testnet)',
6397
6397
  chain: 'Flow',
6398
6398
  rpc: [ 'https://testnet.evm.nodes.onflow.org' ],
6399
6399
  faucets: [ 'https://faucet.flow.com/fund-account' ],
@@ -7387,7 +7387,7 @@ const chainArray = [
7387
7387
  ]
7388
7388
  },
7389
7389
  {
7390
- name: 'Mainnet',
7390
+ name: 'EVM on Flow',
7391
7391
  chain: 'Flow',
7392
7392
  rpc: [ 'https://mainnet.evm.nodes.onflow.org' ],
7393
7393
  faucets: [],
@@ -7399,9 +7399,9 @@ const chainArray = [
7399
7399
  icon: 'flowevm',
7400
7400
  explorers: [
7401
7401
  {
7402
- name: 'Flow Diver',
7403
- url: 'https://flowdiver.io',
7404
- standard: 'none'
7402
+ name: 'FlowScan',
7403
+ url: 'https://evm.flowscan.io',
7404
+ standard: 'EIP3091'
7405
7405
  }
7406
7406
  ]
7407
7407
  },
@@ -8267,6 +8267,27 @@ const chainArray = [
8267
8267
  }
8268
8268
  ]
8269
8269
  },
8270
+ {
8271
+ name: 'Subtensor EVM Testnet',
8272
+ chain: 'Bittensor',
8273
+ rpc: [ 'https://evm-testnet.dev.opentensor.ai' ],
8274
+ faucets: [],
8275
+ nativeCurrency: { name: 'testTAO', symbol: 'TAO', decimals: 9 },
8276
+ infoURL: 'https://bittensor.com/',
8277
+ shortName: 'bittensor-evm-testnet',
8278
+ chainId: 945,
8279
+ networkId: 945,
8280
+ slip44: 1005,
8281
+ icon: 'bittensor',
8282
+ explorers: [
8283
+ {
8284
+ name: 'Subtensor EVM Explorer',
8285
+ url: 'https://evm-testscan.dev.opentensor.ai',
8286
+ icon: 'bittensor',
8287
+ standard: 'EIP3091'
8288
+ }
8289
+ ]
8290
+ },
8270
8291
  {
8271
8292
  name: 'muNode Testnet',
8272
8293
  chain: 'munode',
@@ -8552,7 +8573,7 @@ const chainArray = [
8552
8573
  chain: '5ireChain',
8553
8574
  rpc: [ 'https://rpc.5ire.network' ],
8554
8575
  faucets: [],
8555
- nativeCurrency: { name: '5ire Token', symbol: '5IRE', decimals: 18 },
8576
+ nativeCurrency: { name: '5ire Token', symbol: '5ire', decimals: 18 },
8556
8577
  infoURL: 'https://5ire.org',
8557
8578
  shortName: '5ire',
8558
8579
  chainId: 995,
@@ -8580,10 +8601,10 @@ const chainArray = [
8580
8601
  icon: 'bifrost-polkadot'
8581
8602
  },
8582
8603
  {
8583
- name: '5ireChain Thunder',
8584
- chain: '5ireChain Testnet',
8585
- rpc: [ 'https://rpc-testnet.5ire.network' ],
8586
- faucets: [ 'https://explorer.5ire.network/faucet' ],
8604
+ name: '5ireChain Thunder Testnet',
8605
+ chain: '5ireChain',
8606
+ rpc: [ 'https://rpc.testnet.5ire.network' ],
8607
+ faucets: [ 'https://testnet.5irescan.io/faucet' ],
8587
8608
  nativeCurrency: { name: '5ire Testnet Token', symbol: 'T5IRE', decimals: 18 },
8588
8609
  infoURL: 'https://5ire.org',
8589
8610
  shortName: 'T5ire',
@@ -8592,8 +8613,8 @@ const chainArray = [
8592
8613
  icon: '5ireChain',
8593
8614
  explorers: [
8594
8615
  {
8595
- name: '5ireChain Explorer',
8596
- url: 'https://explorer.5ire.network',
8616
+ name: '5ireChain Testnet Explorer',
8617
+ url: 'https://testnet.5irescan.io',
8597
8618
  standard: 'none',
8598
8619
  icon: '5ireChain'
8599
8620
  }
@@ -12910,8 +12931,8 @@ const chainArray = [
12910
12931
  ]
12911
12932
  },
12912
12933
  {
12913
- name: 'Aleph Zero Testnet',
12914
- chain: 'Aleph Zero Testnet',
12934
+ name: 'Aleph Zero',
12935
+ chain: 'Aleph Zero',
12915
12936
  icon: 'aleph',
12916
12937
  rpc: [
12917
12938
  'https://rpc.alephzero-testnet.gelato.digital',
@@ -12919,14 +12940,14 @@ const chainArray = [
12919
12940
  ],
12920
12941
  faucets: [],
12921
12942
  nativeCurrency: { name: 'TZERO', symbol: 'TZERO', decimals: 18 },
12922
- infoURL: 'https://testnet.alephzero.org',
12943
+ infoURL: 'https://alephzero.org/',
12923
12944
  shortName: 'aleph',
12924
12945
  chainId: 2039,
12925
12946
  networkId: 2039,
12926
12947
  explorers: [
12927
12948
  {
12928
- name: 'Aleph Zero Testnet',
12929
- url: 'https://test.azero.dev/#/explorer',
12949
+ name: 'Aleph Zero',
12950
+ url: 'https://evm-explorer-testnet.alephzero.org',
12930
12951
  icon: 'aleph',
12931
12952
  standard: 'none'
12932
12953
  }
@@ -15983,6 +16004,26 @@ const chainArray = [
15983
16004
  }
15984
16005
  ]
15985
16006
  },
16007
+ {
16008
+ name: 'Zeroth Mainnet',
16009
+ chain: 'ZRH',
16010
+ icon: 'zeroth',
16011
+ rpc: [ 'https://my.zeroth.run' ],
16012
+ faucets: [],
16013
+ nativeCurrency: { name: 'ZRH', symbol: 'ZRH', decimals: 18 },
16014
+ infoURL: 'https://www.zeroth.foundation',
16015
+ shortName: 'ZRH',
16016
+ chainId: 4088,
16017
+ networkId: 4088,
16018
+ explorers: [
16019
+ {
16020
+ name: 'Zeroth Explorer',
16021
+ url: 'https://scan.zeroth.run',
16022
+ icon: 'zeroth',
16023
+ standard: 'EIP3091'
16024
+ }
16025
+ ]
16026
+ },
15986
16027
  {
15987
16028
  name: 'Fastex Chain (Bahamut) Oasis Testnet',
15988
16029
  title: 'Bahamut testnet Oasis',
@@ -22596,6 +22637,26 @@ const chainArray = [
22596
22637
  }
22597
22638
  ]
22598
22639
  },
22640
+ {
22641
+ name: 'Zeroth Testnet',
22642
+ chain: 'Zeroth',
22643
+ icon: 'zeroth',
22644
+ rpc: [ 'https://test-my.zeroth.run' ],
22645
+ faucets: [],
22646
+ nativeCurrency: { name: 'Zeroth', symbol: 'ZRHt', decimals: 18 },
22647
+ infoURL: 'https://www.zeroth.foundation',
22648
+ shortName: 'ZRHt',
22649
+ chainId: 14088,
22650
+ networkId: 14088,
22651
+ explorers: [
22652
+ {
22653
+ name: 'Zeroth Explorer',
22654
+ url: 'https://test-scan.zeroth.run',
22655
+ icon: 'zeroth',
22656
+ standard: 'EIP3091'
22657
+ }
22658
+ ]
22659
+ },
22599
22660
  {
22600
22661
  name: 'EVOLVE Testnet',
22601
22662
  chain: 'EVO',
@@ -24606,6 +24667,26 @@ const chainArray = [
24606
24667
  ],
24607
24668
  parent: { type: 'L2', chain: 'eip155-248' }
24608
24669
  },
24670
+ {
24671
+ name: 'qChain Mainnet',
24672
+ chain: 'qChain',
24673
+ rpc: [ 'https://rpc.qchain.kr' ],
24674
+ faucets: [],
24675
+ features: [ { name: 'EIP155' } ],
24676
+ nativeCurrency: { name: 'QCO', symbol: 'QCO', decimals: 18 },
24677
+ infoURL: 'https://www.qchain.kr',
24678
+ shortName: 'qchain',
24679
+ chainId: 30000,
24680
+ networkId: 30000,
24681
+ icon: 'qchain',
24682
+ explorers: [
24683
+ {
24684
+ name: 'qChain explorer',
24685
+ url: 'https://scan.qchain.kr',
24686
+ standard: 'EIP3091'
24687
+ }
24688
+ ]
24689
+ },
24609
24690
  {
24610
24691
  name: 'Piece testnet',
24611
24692
  chain: 'PieceNetwork',
@@ -27463,7 +27544,7 @@ const chainArray = [
27463
27544
  name: 'eSync Network Testnet',
27464
27545
  title: 'eSync Network Testnet',
27465
27546
  chain: 'ECS',
27466
- rpc: [ 'http://rpc.tst.esync.network' ],
27547
+ rpc: [ 'https://rpc.tst.esync.network' ],
27467
27548
  faucets: [ 'https://faucet.tst.ecredits.com' ],
27468
27549
  nativeCurrency: { name: 'eCredits', symbol: 'ECS', decimals: 18 },
27469
27550
  infoURL: 'https://esync.network',
@@ -37375,10 +37456,7 @@ const chainArray = [
37375
37456
  {
37376
37457
  name: 'Fluence Stage',
37377
37458
  chain: 'Fluence Stage (Testnet)',
37378
- rpc: [
37379
- 'https://rpc-123420000220.raas-testnet.gelato.digital/',
37380
- 'wss://ws-123420000220.raas-testnet.gelato.digital/'
37381
- ],
37459
+ rpc: [ 'https://rpc.stage.fluence.dev', 'wss://ws.stage.fluence.dev' ],
37382
37460
  faucets: [],
37383
37461
  nativeCurrency: { name: 'tFLT', symbol: 'tFLT', decimals: 18 },
37384
37462
  infoURL: 'https://fluence.network/',
@@ -37388,7 +37466,7 @@ const chainArray = [
37388
37466
  explorers: [
37389
37467
  {
37390
37468
  name: 'blockscout',
37391
- url: 'https://blockscout-123420000220.raas-testnet.gelato.digital',
37469
+ url: 'https://blockscout.stage.fluence.dev',
37392
37470
  standard: 'EIP3091'
37393
37471
  }
37394
37472
  ],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eth-chainlist",
3
- "version": "0.0.484",
3
+ "version": "0.0.486",
4
4
  "description": "List of EVM Chains",
5
5
  "main": "index.js",
6
6
  "scripts": {