eth-chainlist 0.0.281 → 0.0.283

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,21 @@
1
1
  # Changelog
2
2
 
3
+ ### 0.0.283 (2023-11-15)
4
+
5
+
6
+ ### Maintenance
7
+
8
+ * **release:** 0.0.282 ([130a4fd](https://github.com/poowf/eth-chainlist/commit/130a4fd201b1c8f941bee7a2004b23dc4ec9718b))
9
+ * update chain data ([57d8b89](https://github.com/poowf/eth-chainlist/commit/57d8b89787c82f32b56537ef853c38098943140f))
10
+
11
+ ### 0.0.282 (2023-11-14)
12
+
13
+
14
+ ### Maintenance
15
+
16
+ * **release:** 0.0.281 ([db01030](https://github.com/poowf/eth-chainlist/commit/db0103046959b76a30f3f52c06db8a9477b033d5))
17
+ * update chain data ([7a3101d](https://github.com/poowf/eth-chainlist/commit/7a3101d3c42bafb837f1ad0e3806e1d72314c64a))
18
+
3
19
  ### 0.0.281 (2023-11-11)
4
20
 
5
21
 
package/data/chain.js CHANGED
@@ -3111,12 +3111,12 @@ const chainArray = [
3111
3111
  ]
3112
3112
  },
3113
3113
  {
3114
- name: 'Xgon Testnet',
3115
- chain: 'xgon',
3116
- rpc: [ 'https://testrpc.xgon.io' ],
3114
+ name: 'X1 Testnet',
3115
+ chain: 'X1',
3116
+ rpc: [ 'https://testrpc.x1.tech', 'https://x1testrpc.okx.com' ],
3117
3117
  faucets: [ 'https://www.oklink.com/okbc-test' ],
3118
3118
  nativeCurrency: {
3119
- name: 'Xgon Global Utility Token in testnet',
3119
+ name: 'X1 Global Utility Token in testnet',
3120
3120
  symbol: 'OKB',
3121
3121
  decimals: 18
3122
3122
  },
@@ -3135,11 +3135,11 @@ const chainArray = [
3135
3135
  status: 'active'
3136
3136
  },
3137
3137
  {
3138
- name: 'Xgon Mainnet',
3139
- chain: 'xgon',
3138
+ name: 'X1 Mainnet',
3139
+ chain: 'X1',
3140
3140
  rpc: [],
3141
3141
  faucets: [],
3142
- nativeCurrency: { name: 'Xgon Global Utility Token', symbol: 'OKB', decimals: 18 },
3142
+ nativeCurrency: { name: 'X1 Global Utility Token', symbol: 'OKB', decimals: 18 },
3143
3143
  features: [],
3144
3144
  infoURL: 'https://www.okx.com/okbc/docs/dev/quick-start/introduction/introduction-to-okbchain',
3145
3145
  shortName: 'okb',
@@ -9669,7 +9669,10 @@ const chainArray = [
9669
9669
  name: 'Krest Network',
9670
9670
  chain: 'Krest',
9671
9671
  icon: 'krest',
9672
- rpc: [ 'https://erpc-krest.peaq.network' ],
9672
+ rpc: [
9673
+ 'https://erpc-krest.peaq.network',
9674
+ 'https://krest.unitedbloc.com'
9675
+ ],
9673
9676
  faucets: [],
9674
9677
  nativeCurrency: { name: 'Krest', symbol: 'KRST', decimals: 18 },
9675
9678
  infoURL: 'https://www.peaq.network',
@@ -11190,6 +11193,27 @@ const chainArray = [
11190
11193
  }
11191
11194
  ]
11192
11195
  },
11196
+ {
11197
+ name: 'Credit Smart Chain Mainnet',
11198
+ chain: 'CREDIT',
11199
+ rpc: [ 'https://rpc.creditsmartchain.com' ],
11200
+ faucets: [],
11201
+ nativeCurrency: { name: 'Credit', symbol: 'CREDIT', decimals: 18 },
11202
+ features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
11203
+ infoURL: 'https://creditsmartchain.com',
11204
+ shortName: 'CreditEdge',
11205
+ chainId: 4400,
11206
+ networkId: 4400,
11207
+ icon: 'credit',
11208
+ explorers: [
11209
+ {
11210
+ name: 'Creditscan',
11211
+ url: 'https://scan.creditsmartchain.com',
11212
+ icon: 'credit',
11213
+ standard: 'EIP3091'
11214
+ }
11215
+ ]
11216
+ },
11193
11217
  {
11194
11218
  name: 'Htmlcoin Mainnet',
11195
11219
  chain: 'mainnet',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eth-chainlist",
3
- "version": "0.0.281",
3
+ "version": "0.0.283",
4
4
  "description": "List of EVM Chains",
5
5
  "main": "index.js",
6
6
  "scripts": {