eth-chainlist 0.0.63 → 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,21 @@
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
+
11
+ ### 0.0.64 (2023-01-24)
12
+
13
+
14
+ ### Maintenance
15
+
16
+ * **release:** 0.0.63 ([dc5b1d1](https://github.com/poowf/eth-chainlist/commit/dc5b1d192b53b44afffdd2c9da1a844730b9ae5e))
17
+ * update chain data ([497176d](https://github.com/poowf/eth-chainlist/commit/497176d56fd00c5b23089e1286a01e65d65f4990))
18
+
3
19
  ### 0.0.63 (2023-01-23)
4
20
 
5
21
 
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',
@@ -12366,6 +12406,26 @@ const chainArray = [
12366
12406
  networkId: 28945486,
12367
12407
  slip44: 344
12368
12408
  },
12409
+ {
12410
+ name: 'Flachain Mainnet',
12411
+ chain: 'FLX',
12412
+ icon: 'flacoin',
12413
+ rpc: [ 'https://flachain.flaexchange.top/' ],
12414
+ features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
12415
+ faucets: [],
12416
+ nativeCurrency: { name: 'Flacoin', symbol: 'FLA', decimals: 18 },
12417
+ infoURL: 'https://www.flaexchange.top',
12418
+ shortName: 'fla',
12419
+ chainId: 29032022,
12420
+ networkId: 29032022,
12421
+ explorers: [
12422
+ {
12423
+ name: 'FLXExplorer',
12424
+ url: 'https://explorer.flaexchange.top',
12425
+ standard: 'EIP3091'
12426
+ }
12427
+ ]
12428
+ },
12369
12429
  {
12370
12430
  name: 'Filecoin - Local testnet',
12371
12431
  chain: 'FIL',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eth-chainlist",
3
- "version": "0.0.63",
3
+ "version": "0.0.65",
4
4
  "description": "List of EVM Chains",
5
5
  "main": "index.js",
6
6
  "scripts": {