eth-chainlist 0.0.64 → 0.0.65

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.65 (2023-01-26)
4
+
5
+
6
+ ### Maintenance
7
+
8
+ * **release:** 0.0.64 ([78b4f6c](https://github.com/poowf/eth-chainlist/commit/78b4f6c2d64044c30c22fef2d4ef53de43c452bd))
9
+ * update chain data ([63afab4](https://github.com/poowf/eth-chainlist/commit/63afab493493c1d2aeee6b9bf5bc18fe9f48c161))
10
+
3
11
  ### 0.0.64 (2023-01-24)
4
12
 
5
13
 
package/data/chain.js CHANGED
@@ -6195,6 +6195,46 @@ const chainArray = [
6195
6195
  }
6196
6196
  ]
6197
6197
  },
6198
+ {
6199
+ name: 'TCG Verse Mainnet',
6200
+ chain: 'TCG Verse',
6201
+ icon: 'tcg_verse',
6202
+ rpc: [ 'https://rpc.tcgverse.xyz' ],
6203
+ faucets: [],
6204
+ nativeCurrency: { name: 'OAS', symbol: 'OAS', decimals: 18 },
6205
+ infoURL: 'https://tcgverse.xyz/',
6206
+ shortName: 'TCGV',
6207
+ chainId: 2400,
6208
+ networkId: 2400,
6209
+ explorers: [
6210
+ {
6211
+ name: 'TCG Verse Explorer',
6212
+ url: 'https://explorer.tcgverse.xyz',
6213
+ standard: 'EIP3091'
6214
+ }
6215
+ ],
6216
+ parent: { type: 'L2', chain: 'eip155-248' }
6217
+ },
6218
+ {
6219
+ name: 'XODEX',
6220
+ chain: 'XODEX',
6221
+ rpc: [ 'https://mainnet.xo-dex.com/rpc', 'https://xo-dex.io' ],
6222
+ faucets: [],
6223
+ nativeCurrency: { name: 'XODEX Native Token', symbol: 'XODEX', decimals: 18 },
6224
+ infoURL: 'https://xo-dex.com',
6225
+ shortName: 'xodex',
6226
+ chainId: 2415,
6227
+ networkId: 10,
6228
+ icon: 'xodex',
6229
+ explorers: [
6230
+ {
6231
+ name: 'XODEX Explorer',
6232
+ url: 'https://explorer.xo-dex.com',
6233
+ standard: 'EIP3091',
6234
+ icon: 'xodex'
6235
+ }
6236
+ ]
6237
+ },
6198
6238
  {
6199
6239
  name: 'Kortho Mainnet',
6200
6240
  chain: 'Kortho Chain',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eth-chainlist",
3
- "version": "0.0.64",
3
+ "version": "0.0.65",
4
4
  "description": "List of EVM Chains",
5
5
  "main": "index.js",
6
6
  "scripts": {