eth-chainlist 0.0.299 → 0.0.301

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.
Files changed (3) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/data/chain.js +144 -31
  3. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # Changelog
2
2
 
3
+ ### 0.0.301 (2023-12-09)
4
+
5
+
6
+ ### Maintenance
7
+
8
+ * **release:** 0.0.300 ([427b36a](https://github.com/poowf/eth-chainlist/commit/427b36ad76b74467bc19648b87bd2d89a65002cf))
9
+ * update chain data ([dec2769](https://github.com/poowf/eth-chainlist/commit/dec27699bca8d43424148eecdbab310b343180a2))
10
+
11
+ ### 0.0.300 (2023-12-08)
12
+
13
+
14
+ ### Maintenance
15
+
16
+ * **release:** 0.0.299 ([2f45baa](https://github.com/poowf/eth-chainlist/commit/2f45baa20b894be64bcaddd52784341b882cafd6))
17
+ * update chain data ([b54d771](https://github.com/poowf/eth-chainlist/commit/b54d771f537a07ac0a8a1e9af86c2bc3c979e423))
18
+
3
19
  ### 0.0.299 (2023-12-07)
4
20
 
5
21
 
package/data/chain.js CHANGED
@@ -3769,12 +3769,13 @@ const chainArray = [
3769
3769
  ]
3770
3770
  },
3771
3771
  {
3772
- name: 'zkSync Era Testnet',
3772
+ name: 'zkSync Era Goerli Testnet (deprecated)',
3773
+ status: 'deprecated',
3773
3774
  chain: 'ETH',
3774
3775
  rpc: [ 'https://testnet.era.zksync.dev' ],
3775
- faucets: [ 'https://goerli.portal.zksync.io/faucet' ],
3776
+ faucets: [],
3776
3777
  nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
3777
- infoURL: 'https://era.zksync.io/docs/',
3778
+ infoURL: 'https://zksync.io/',
3778
3779
  shortName: 'zksync-goerli',
3779
3780
  chainId: 280,
3780
3781
  networkId: 280,
@@ -3790,7 +3791,7 @@ const chainArray = [
3790
3791
  parent: {
3791
3792
  type: 'L2',
3792
3793
  chain: 'eip155-1',
3793
- bridges: [ { url: 'https://goerli.portal.zksync.io/bridge' } ]
3794
+ bridges: [ { url: 'https://bridge.zksync.io/' } ]
3794
3795
  }
3795
3796
  },
3796
3797
  {
@@ -3970,17 +3971,30 @@ const chainArray = [
3970
3971
  explorers: []
3971
3972
  },
3972
3973
  {
3973
- name: '(deprecated) Optimism on GC',
3974
- chain: 'OGC',
3975
- rpc: [],
3974
+ name: 'zkSync Sepolia Testnet',
3975
+ chain: 'ETH',
3976
+ rpc: [ 'https://sepolia.era.zksync.dev' ],
3976
3977
  faucets: [],
3977
- nativeCurrency: { name: 'xDAI', symbol: 'xDAI', decimals: 18 },
3978
- shortName: 'ogc',
3978
+ nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
3979
+ infoURL: 'https://zksync.io/',
3980
+ shortName: 'zksync-sepolia',
3979
3981
  chainId: 300,
3980
3982
  networkId: 300,
3981
- infoURL: 'https://docs.gnosischain.com',
3982
- explorers: [],
3983
- status: 'deprecated'
3983
+ icon: 'zksync-era',
3984
+ explorers: [
3985
+ {
3986
+ name: 'zkSync Block Explorer',
3987
+ url: 'https://sepolia.explorer.zksync.io',
3988
+ icon: 'zksync-era',
3989
+ standard: 'EIP3091'
3990
+ }
3991
+ ],
3992
+ parent: {
3993
+ type: 'L2',
3994
+ chain: 'eip155-1',
3995
+ bridges: [ { url: 'https://bridge.zksync.io/' } ]
3996
+ },
3997
+ redFlags: [ 'reusedChainId' ]
3984
3998
  },
3985
3999
  {
3986
4000
  name: 'Bobaopera',
@@ -4175,7 +4189,7 @@ const chainArray = [
4175
4189
  ]
4176
4190
  },
4177
4191
  {
4178
- name: 'zkSync Era Mainnet',
4192
+ name: 'zkSync Mainnet',
4179
4193
  chain: 'ETH',
4180
4194
  rpc: [ 'https://mainnet.era.zksync.io' ],
4181
4195
  faucets: [],
@@ -5818,6 +5832,25 @@ const chainArray = [
5818
5832
  }
5819
5833
  ]
5820
5834
  },
5835
+ {
5836
+ name: 'Firechain zkEVM',
5837
+ title: 'Firechain zkEVM',
5838
+ chain: 'Firechain',
5839
+ rpc: [ 'https://rpc.zkevm.thefirechain.com' ],
5840
+ faucets: [],
5841
+ nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
5842
+ infoURL: 'https://docs.thefirechain.com/',
5843
+ shortName: 'firechan-zkEVM',
5844
+ chainId: 814,
5845
+ networkId: 814,
5846
+ icon: 'firechain',
5847
+ explorers: [],
5848
+ parent: {
5849
+ type: 'L2',
5850
+ chain: 'eip155-1',
5851
+ bridges: [ { url: 'https://zkevm.bridge.rpc.thefirechain.com' } ]
5852
+ }
5853
+ },
5821
5854
  {
5822
5855
  name: 'BeOne Chain Mainnet',
5823
5856
  chain: 'BOC',
@@ -6295,14 +6328,22 @@ const chainArray = [
6295
6328
  {
6296
6329
  name: 'Oort Mainnet',
6297
6330
  chain: 'Oort Mainnet',
6298
- rpc: [ 'https://rpc.oortech.com' ],
6331
+ rpc: [ 'https://mainnet-rpc.oortech.com' ],
6299
6332
  faucets: [],
6300
6333
  nativeCurrency: { name: 'Oort', symbol: 'CCN', decimals: 18 },
6301
6334
  infoURL: 'https://oortech.com',
6302
6335
  shortName: 'ccn',
6303
6336
  chainId: 970,
6304
6337
  networkId: 970,
6305
- icon: 'ccn'
6338
+ icon: 'oort',
6339
+ explorers: [
6340
+ {
6341
+ name: 'Oort Mainnet Explorer',
6342
+ url: 'https://mainnet-scan.oortech.com',
6343
+ standard: 'none',
6344
+ icon: 'oort'
6345
+ }
6346
+ ]
6306
6347
  },
6307
6348
  {
6308
6349
  name: 'Oort Huygens',
@@ -6327,7 +6368,15 @@ const chainArray = [
6327
6368
  shortName: 'Ascraeus',
6328
6369
  chainId: 972,
6329
6370
  networkId: 972,
6330
- icon: 'ccn'
6371
+ icon: 'oort',
6372
+ explorers: [
6373
+ {
6374
+ name: 'Oort Ascraeus Explorer',
6375
+ url: 'https://ascraeus-scan.oortech.com',
6376
+ standard: 'none',
6377
+ icon: 'oort'
6378
+ }
6379
+ ]
6331
6380
  },
6332
6381
  {
6333
6382
  name: 'Nepal Blockchain Network',
@@ -10213,26 +10262,26 @@ const chainArray = [
10213
10262
  ]
10214
10263
  },
10215
10264
  {
10216
- name: 'Morphism Testnet',
10265
+ name: 'Morph Testnet',
10217
10266
  chain: 'ETH',
10218
- rpc: [ 'https://rpc-testnet.morphism.xyz' ],
10267
+ rpc: [ 'https://rpc-testnet.morphl2.io' ],
10219
10268
  faucets: [],
10220
10269
  nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
10221
- infoURL: 'https://morphism.xyz',
10270
+ infoURL: 'https://morphl2.io',
10222
10271
  shortName: 'tmorph',
10223
10272
  chainId: 2710,
10224
10273
  networkId: 2710,
10225
10274
  explorers: [
10226
10275
  {
10227
- name: 'Morphism Testnet Explorer',
10228
- url: 'https://explorer-testnet.morphism.xyz',
10276
+ name: 'Morph Testnet Explorer',
10277
+ url: 'https://explorer-testnet.morphl2.io',
10229
10278
  standard: 'EIP3091'
10230
10279
  }
10231
10280
  ],
10232
10281
  parent: {
10233
10282
  type: 'L2',
10234
10283
  chain: 'eip155-1',
10235
- bridges: [ { url: 'https://bridge-testnet.morphism.xyz' } ]
10284
+ bridges: [ { url: 'https://bridge-testnet.morphl2.io' } ]
10236
10285
  }
10237
10286
  },
10238
10287
  {
@@ -10871,6 +10920,19 @@ const chainArray = [
10871
10920
  }
10872
10921
  ]
10873
10922
  },
10923
+ {
10924
+ name: 'Firechain zkEVM Ghostrider',
10925
+ title: 'Firechain zkEVM Ghostrider',
10926
+ chain: 'Firechain',
10927
+ rpc: [ 'https://rpc.zkevm.ghostrider.thefirechain.com' ],
10928
+ faucets: [ 'zkevm-faucet.thefirechain.com' ],
10929
+ nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
10930
+ infoURL: 'https://docs.thefirechain.com/',
10931
+ shortName: 'firechain-zkEVM-ghostrider',
10932
+ chainId: 3885,
10933
+ networkId: 3885,
10934
+ explorers: []
10935
+ },
10874
10936
  {
10875
10937
  name: 'KalyChain Mainnet',
10876
10938
  chain: 'KLC',
@@ -13798,14 +13860,22 @@ const chainArray = [
13798
13860
  name: 'Oort MainnetDev',
13799
13861
  title: 'Oort MainnetDev',
13800
13862
  chain: 'MainnetDev',
13801
- rpc: [],
13863
+ rpc: [ 'https://dev-rpc.oortech.com' ],
13802
13864
  faucets: [],
13803
13865
  nativeCurrency: { name: 'Oort', symbol: 'CCN', decimals: 18 },
13804
13866
  infoURL: 'https://oortech.com',
13805
13867
  shortName: 'MainnetDev',
13806
13868
  chainId: 9700,
13807
13869
  networkId: 9700,
13808
- icon: 'ccn'
13870
+ icon: 'oort',
13871
+ explorers: [
13872
+ {
13873
+ name: 'Oort MainnetDev Scan',
13874
+ url: 'https://dev-scan.oortech.com',
13875
+ standard: 'none',
13876
+ icon: 'oort'
13877
+ }
13878
+ ]
13809
13879
  },
13810
13880
  {
13811
13881
  name: 'Boba BNB Testnet',
@@ -15459,6 +15529,27 @@ const chainArray = [
15459
15529
  }
15460
15530
  ]
15461
15531
  },
15532
+ {
15533
+ name: 'BSL Mainnet',
15534
+ chain: 'BSL',
15535
+ rpc: [
15536
+ 'http://rpc-mainnet.nftruth.io:8545',
15537
+ 'ws://rpc-mainnet.nftruth.io:8645'
15538
+ ],
15539
+ faucets: [],
15540
+ nativeCurrency: { name: 'Origin NFT', symbol: 'ONF', decimals: 18 },
15541
+ infoURL: 'https://bsquarelab.com/',
15542
+ shortName: 'onf',
15543
+ chainId: 21912,
15544
+ networkId: 21912,
15545
+ explorers: [
15546
+ {
15547
+ name: 'BSL Mainnet Explorer',
15548
+ url: 'https://scan.nftruth.io',
15549
+ standard: 'EIP3091'
15550
+ }
15551
+ ]
15552
+ },
15462
15553
  {
15463
15554
  name: 'Taycan',
15464
15555
  chain: 'Taycan',
@@ -16535,6 +16626,27 @@ const chainArray = [
16535
16626
  }
16536
16627
  ]
16537
16628
  },
16629
+ {
16630
+ name: 'ZKFair Testnet',
16631
+ chain: 'ETH',
16632
+ rpc: [ 'https://testnet-rpc.zkfair.io' ],
16633
+ faucets: [],
16634
+ nativeCurrency: { name: 'USDC Token', symbol: 'USDC', decimals: 18 },
16635
+ features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
16636
+ infoURL: 'https://zkfair.io',
16637
+ shortName: 'ZKFair-Testnet',
16638
+ chainId: 43851,
16639
+ networkId: 43851,
16640
+ icon: 'zkfair',
16641
+ explorers: [
16642
+ {
16643
+ name: 'ZKFair Testnet Info',
16644
+ url: 'https://testnet-scan.zkfair.io',
16645
+ icon: 'zkfair',
16646
+ standard: 'EIP3091'
16647
+ }
16648
+ ]
16649
+ },
16538
16650
  {
16539
16651
  name: 'Frenchain',
16540
16652
  chain: 'fren',
@@ -20205,25 +20317,26 @@ const chainArray = [
20205
20317
  ]
20206
20318
  },
20207
20319
  {
20208
- name: 'Rethereum Mainnet',
20209
- chain: 'RTH',
20320
+ name: 'Hypra Mainnet',
20321
+ chain: 'HYP',
20210
20322
  rpc: [
20323
+ 'https://rpc.hypra.network',
20211
20324
  'https://rpc.rethereum.org',
20212
20325
  'https://rethereum.rpc.restratagem.com',
20213
20326
  'https://rpc.rthcentral.org'
20214
20327
  ],
20215
20328
  faucets: [],
20216
- nativeCurrency: { name: 'Rethereum', symbol: 'RTH', decimals: 18 },
20329
+ nativeCurrency: { name: 'Hypra', symbol: 'HYP', decimals: 18 },
20217
20330
  features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
20218
- infoURL: 'https://www.rethereum.org',
20219
- shortName: 'rth',
20331
+ infoURL: 'https://www.hypra.network',
20332
+ shortName: 'hyp',
20220
20333
  chainId: 622277,
20221
20334
  networkId: 622277,
20222
20335
  icon: 'rethereum',
20223
20336
  explorers: [
20224
20337
  {
20225
- name: 'rethereum',
20226
- url: 'https://explorer.rethereum.org',
20338
+ name: 'hypra',
20339
+ url: 'https://explorer.hypra.network',
20227
20340
  icon: 'blockscout',
20228
20341
  standard: 'EIP3091'
20229
20342
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eth-chainlist",
3
- "version": "0.0.299",
3
+ "version": "0.0.301",
4
4
  "description": "List of EVM Chains",
5
5
  "main": "index.js",
6
6
  "scripts": {