eth-chainlist 0.0.299 → 0.0.300

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.300 (2023-12-08)
4
+
5
+
6
+ ### Maintenance
7
+
8
+ * **release:** 0.0.299 ([2f45baa](https://github.com/poowf/eth-chainlist/commit/2f45baa20b894be64bcaddd52784341b882cafd6))
9
+ * update chain data ([b54d771](https://github.com/poowf/eth-chainlist/commit/b54d771f537a07ac0a8a1e9af86c2bc3c979e423))
10
+
3
11
  ### 0.0.299 (2023-12-07)
4
12
 
5
13
 
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: [],
@@ -15459,6 +15473,27 @@ const chainArray = [
15459
15473
  }
15460
15474
  ]
15461
15475
  },
15476
+ {
15477
+ name: 'BSL Mainnet',
15478
+ chain: 'BSL',
15479
+ rpc: [
15480
+ 'http://rpc-mainnet.nftruth.io:8545',
15481
+ 'ws://rpc-mainnet.nftruth.io:8645'
15482
+ ],
15483
+ faucets: [],
15484
+ nativeCurrency: { name: 'Origin NFT', symbol: 'ONF', decimals: 18 },
15485
+ infoURL: 'https://bsquarelab.com/',
15486
+ shortName: 'onf',
15487
+ chainId: 21912,
15488
+ networkId: 21912,
15489
+ explorers: [
15490
+ {
15491
+ name: 'BSL Mainnet Explorer',
15492
+ url: 'https://scan.nftruth.io',
15493
+ standard: 'EIP3091'
15494
+ }
15495
+ ]
15496
+ },
15462
15497
  {
15463
15498
  name: 'Taycan',
15464
15499
  chain: 'Taycan',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eth-chainlist",
3
- "version": "0.0.299",
3
+ "version": "0.0.300",
4
4
  "description": "List of EVM Chains",
5
5
  "main": "index.js",
6
6
  "scripts": {