eth-chainlist 0.0.250 → 0.0.251

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.251 (2023-10-06)
4
+
5
+
6
+ ### Maintenance
7
+
8
+ * **release:** 0.0.250 ([3aae1d3](https://github.com/poowf/eth-chainlist/commit/3aae1d3a757ac872a964da1345fac86417fa28ab))
9
+ * update chain data ([401f40b](https://github.com/poowf/eth-chainlist/commit/401f40b243bd314273b75cf8b8dd855279576c92))
10
+
3
11
  ### 0.0.250 (2023-10-05)
4
12
 
5
13
 
package/data/chain.js CHANGED
@@ -11,7 +11,8 @@ const chainArray = [
11
11
  'https://ethereum.publicnode.com',
12
12
  'wss://ethereum.publicnode.com',
13
13
  'https://mainnet.gateway.tenderly.co',
14
- 'wss://mainnet.gateway.tenderly.co'
14
+ 'wss://mainnet.gateway.tenderly.co',
15
+ 'https://rpc.blocknative.com/boost'
15
16
  ],
16
17
  features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
17
18
  faucets: [],
@@ -5689,7 +5690,7 @@ const chainArray = [
5689
5690
  ],
5690
5691
  faucets: [],
5691
5692
  nativeCurrency: { name: 'FST', symbol: 'FST', decimals: 18 },
5692
- infoURL: 'https://fantasia.technology/',
5693
+ infoURL: 'https://fantasiachain.com/',
5693
5694
  shortName: 'FSCMainnet',
5694
5695
  chainId: 868,
5695
5696
  networkId: 868,
@@ -14458,6 +14459,25 @@ const chainArray = [
14458
14459
  }
14459
14460
  ]
14460
14461
  },
14462
+ {
14463
+ name: 'G8Chain Mainnet',
14464
+ chain: 'G8C',
14465
+ icon: 'G8Chain',
14466
+ rpc: [ 'https://mainnet-rpc.oneg8.network' ],
14467
+ faucets: [ 'https://faucet.oneg8.network' ],
14468
+ nativeCurrency: { name: 'G8Chain', symbol: 'G8C', decimals: 18 },
14469
+ infoURL: 'https://oneg8.one',
14470
+ shortName: 'G8Cm',
14471
+ chainId: 17171,
14472
+ networkId: 17171,
14473
+ explorers: [
14474
+ {
14475
+ name: 'G8Chain',
14476
+ url: 'https://mainnet.oneg8.network',
14477
+ standard: 'EIP3091'
14478
+ }
14479
+ ]
14480
+ },
14461
14481
  {
14462
14482
  name: 'Palette Chain Testnet',
14463
14483
  chain: 'PLT',
@@ -14569,6 +14589,25 @@ const chainArray = [
14569
14589
  }
14570
14590
  ]
14571
14591
  },
14592
+ {
14593
+ name: 'G8Chain Testnet',
14594
+ chain: 'G8C',
14595
+ icon: 'G8Chain',
14596
+ rpc: [ 'https://testnet-rpc.oneg8.network' ],
14597
+ faucets: [ 'https://faucet.oneg8.network' ],
14598
+ nativeCurrency: { name: 'G8Coin', symbol: 'G8C', decimals: 18 },
14599
+ infoURL: 'https://oneg8.one',
14600
+ shortName: 'G8Ct',
14601
+ chainId: 18181,
14602
+ networkId: 18181,
14603
+ explorers: [
14604
+ {
14605
+ name: 'G8Chain',
14606
+ url: 'https://testnet.oneg8.network',
14607
+ standard: 'EIP3091'
14608
+ }
14609
+ ]
14610
+ },
14572
14611
  {
14573
14612
  name: 'MXC zkEVM Mainnet',
14574
14613
  chain: 'MXC zkEVM',
@@ -19074,9 +19113,14 @@ const chainArray = [
19074
19113
  networkId: 534352,
19075
19114
  explorers: [
19076
19115
  {
19077
- name: 'Scroll Mainnet Block Explorer',
19116
+ name: 'Blockscout',
19078
19117
  url: 'https://blockscout.scroll.io',
19079
19118
  standard: 'EIP3091'
19119
+ },
19120
+ {
19121
+ name: 'Scrollscan',
19122
+ url: 'https://scrollscan.com',
19123
+ standard: 'EIP3091'
19080
19124
  }
19081
19125
  ],
19082
19126
  parent: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eth-chainlist",
3
- "version": "0.0.250",
3
+ "version": "0.0.251",
4
4
  "description": "List of EVM Chains",
5
5
  "main": "index.js",
6
6
  "scripts": {