eth-chainlist 0.0.335 → 0.0.336

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.336 (2024-02-07)
4
+
5
+
6
+ ### Maintenance
7
+
8
+ * **release:** 0.0.335 ([6d95b6b](https://github.com/poowf/eth-chainlist/commit/6d95b6b0343627079c5035324b8492a08078c2d3))
9
+ * update chain data ([b476a49](https://github.com/poowf/eth-chainlist/commit/b476a49e1f73edd4f7ed0be45358277c9ba0bdb1))
10
+
3
11
  ### 0.0.335 (2024-02-06)
4
12
 
5
13
 
package/data/chain.js CHANGED
@@ -5150,6 +5150,20 @@ const chainArray = [
5150
5150
  }
5151
5151
  ]
5152
5152
  },
5153
+ {
5154
+ name: 'Syndicate Chain',
5155
+ title: 'Syndicate Chain',
5156
+ chain: 'Syndicate',
5157
+ rpc: [ 'https://rpc-mainnet.syndicate.io' ],
5158
+ faucets: [],
5159
+ nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
5160
+ infoURL: 'https://syndicate.io',
5161
+ shortName: 'syndicate-chain-mainnet',
5162
+ chainId: 510,
5163
+ networkId: 510,
5164
+ status: 'incubating',
5165
+ icon: 'syndicate'
5166
+ },
5153
5167
  {
5154
5168
  name: 'Double-A Chain Mainnet',
5155
5169
  chain: 'AAC',
@@ -7488,10 +7502,12 @@ const chainArray = [
7488
7502
  nativeCurrency: { name: 'DYM', symbol: 'DYM', decimals: 18 },
7489
7503
  infoURL: 'https://dymension.xyz',
7490
7504
  shortName: 'dymension',
7505
+ icon: 'dymension',
7491
7506
  chainId: 1100,
7492
7507
  networkId: 1100,
7493
- explorers: [],
7494
- status: 'incubating'
7508
+ explorers: [
7509
+ { name: 'dym.fyi', url: 'https://dym.fyi', standard: 'EIP3091' }
7510
+ ]
7495
7511
  },
7496
7512
  {
7497
7513
  name: 'Polygon zkEVM',
@@ -12265,6 +12281,27 @@ const chainArray = [
12265
12281
  }
12266
12282
  ]
12267
12283
  },
12284
+ {
12285
+ name: 'Merlin Mainnet',
12286
+ title: 'Merlin Mainnet',
12287
+ chain: 'Merlin',
12288
+ rpc: [ 'https://rpc.merlinchain.io' ],
12289
+ faucets: [],
12290
+ nativeCurrency: { name: 'BTC', symbol: 'BTC', decimals: 18 },
12291
+ infoURL: 'https://merlinchain.io',
12292
+ shortName: 'Merlin-Mainnet',
12293
+ chainId: 4200,
12294
+ networkId: 4200,
12295
+ icon: 'merlin',
12296
+ explorers: [
12297
+ {
12298
+ name: 'blockscout',
12299
+ url: 'https://scan.merlinchain.io',
12300
+ icon: 'merlin',
12301
+ standard: 'EIP3091'
12302
+ }
12303
+ ]
12304
+ },
12268
12305
  {
12269
12306
  name: 'LUKSO Testnet',
12270
12307
  chain: 'LUKSO Testnet',
@@ -12752,6 +12789,34 @@ const chainArray = [
12752
12789
  }
12753
12790
  ]
12754
12791
  },
12792
+ {
12793
+ name: 'Syndicate Testnet',
12794
+ title: 'Syndicate Testnet',
12795
+ chain: 'Syndicate',
12796
+ rpc: [ 'https://rpc-testnet.syndicate.io' ],
12797
+ faucets: [],
12798
+ nativeCurrency: { name: 'S-Ether', symbol: 'ETH', decimals: 18 },
12799
+ infoURL: 'https://syndicate.io',
12800
+ shortName: 'syndicate-chain-testnet',
12801
+ chainId: 5100,
12802
+ networkId: 5100,
12803
+ status: 'incubating',
12804
+ icon: 'syndicate'
12805
+ },
12806
+ {
12807
+ name: 'Syndicate Frame Chain',
12808
+ title: 'Syndicate Frame Chain',
12809
+ chain: 'Syndicate Frame',
12810
+ rpc: [ 'https://rpc-frame.syndicate.io' ],
12811
+ faucets: [],
12812
+ nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
12813
+ infoURL: 'https://syndicate.io',
12814
+ shortName: 'syndicate-chain-frame',
12815
+ chainId: 5101,
12816
+ networkId: 5101,
12817
+ status: 'incubating',
12818
+ icon: 'syndicate'
12819
+ },
12755
12820
  {
12756
12821
  name: 'Bahamut',
12757
12822
  title: 'Bahamut mainnet',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eth-chainlist",
3
- "version": "0.0.335",
3
+ "version": "0.0.336",
4
4
  "description": "List of EVM Chains",
5
5
  "main": "index.js",
6
6
  "scripts": {