@gainsnetwork/sdk 1.6.0-rc2 → 1.6.1-rc1

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.
@@ -431,6 +431,13 @@ export declare const pairs: {
431
431
  "SOMI/USD": string;
432
432
  "HEMI/USD": string;
433
433
  "FF/USD": string;
434
+ "USELESS/USD": string;
435
+ "MON/USD": string;
436
+ "MET/USD": string;
437
+ "TURTLE/USD": string;
438
+ "SPX500/USD": string;
439
+ "NAS100/USD": string;
440
+ "USA30/USD": string;
434
441
  };
435
442
  export declare const syntheticPairs: Set<string>;
436
443
  export declare const parentToSyntheticPairMap: Map<string, string>;
package/lib/constants.js CHANGED
@@ -439,6 +439,13 @@ exports.pairs = {
439
439
  "SOMI/USD": CRYPTO,
440
440
  "HEMI/USD": CRYPTO,
441
441
  "FF/USD": CRYPTO,
442
+ "USELESS/USD": CRYPTO,
443
+ "MON/USD": CRYPTO,
444
+ "MET/USD": CRYPTO,
445
+ "TURTLE/USD": CRYPTO,
446
+ "SPX500/USD": INDICES,
447
+ "NAS100/USD": INDICES,
448
+ "USA30/USD": INDICES,
442
449
  };
443
450
  exports.syntheticPairs = new Set([
444
451
  "BTCDEGEN/USD",
@@ -486,12 +493,14 @@ exports.stockSplits = {
486
493
  "TSLA_1/USD": { date: "8/25/2022", split: 3 },
487
494
  };
488
495
  exports.delistedPairIxs = new Set([
489
- 4, 6, 12, 15, 24, 25, 27, 28, 30, 31, 36, 48, 51, 52, 53, 54, 56, 59, 60,
496
+ 4, 6, 12, 15, 24, 25, 27, 28, 30, 31, 36, 41, 48, 51, 52, 53, 54, 56, 59, 60,
490
497
  61, 63, 66, 67, 68, 69, 70, 71, 72, 73, 75, 76, 77, 78, 79, 95, 96, 97, 98,
491
498
  99, 101, 106, 111, 113, 114, 116, 118, 120, 122, 123, 125, 127, 130, 147, 152,
492
- 160, 163, 170, 179, 182, 183, 188, 189, 190, 208, 209, 225, 229, 230, 231,
493
- 238, 239, 241, 250, 253, 254, 258, 270, 275, 276, 278, 279, 285, 290, 294,
494
- 296, 305, 311, 330, 349, 352, 353, 354, 355, 357, 365, 366, 395, 396,
499
+ 160, 163, 170, 179, 182, 183, 186, 188, 189, 190, 198, 208, 209, 224, 225,
500
+ 227, 229, 230, 231, 234, 238, 239, 241, 247, 250, 253, 254, 258, 261, 270,
501
+ 272, 275, 276, 278, 279, 280, 285, 290, 291, 292, 294, 296, 303, 305, 306,
502
+ 311, 322, 330, 333, 336, 337, 342, 343, 344, 347, 349, 350, 352, 354, 355,
503
+ 357, 365, 366, 395, 396, 400, 401, 408, 423, 427, 433, 436, 437, 438,
495
504
  ]);
496
505
  exports.delistedGroupsIxs = new Set([]);
497
506
  exports.DEFAULT_PROTECTION_CLOSE_FACTOR = 1;
@@ -585,4 +585,11 @@ const PAIR_INDEX_TO_DESCRIPTION = {
585
585
  [types_1.PairIndex.SOMIUSD]: "Somnia to US Dollar",
586
586
  [types_1.PairIndex.HEMIUSD]: "Hemi to US Dollar",
587
587
  [types_1.PairIndex.FFUSD]: "Falcon Finance to US Dollar",
588
+ [types_1.PairIndex.USELESSUSD]: "Useless Coin to US Dollar",
589
+ [types_1.PairIndex.MONUSD]: "Monad to US Dollar",
590
+ [types_1.PairIndex.METUSD]: "Meteora to US Dollar",
591
+ [types_1.PairIndex.TURTLEUSD]: "Turtle to US Dollar",
592
+ [types_1.PairIndex.SPX500USD]: "S&P500 to US Dollar",
593
+ [types_1.PairIndex.NAS100USD]: "NASDAQ 100 to US Dollar",
594
+ [types_1.PairIndex.USA30USD]: "Down Jones 30 to US Dollar",
588
595
  };
@@ -759,5 +759,12 @@ export declare enum PairIndex {
759
759
  CAMPUSD = 428,
760
760
  SOMIUSD = 429,
761
761
  HEMIUSD = 430,
762
- FFUSD = 431
762
+ FFUSD = 431,
763
+ USELESSUSD = 432,
764
+ MONUSD = 433,
765
+ METUSD = 434,
766
+ TURTLEUSD = 435,
767
+ SPX500USD = 436,
768
+ NAS100USD = 437,
769
+ USA30USD = 438
763
770
  }
@@ -461,4 +461,11 @@ var PairIndex;
461
461
  PairIndex[PairIndex["SOMIUSD"] = 429] = "SOMIUSD";
462
462
  PairIndex[PairIndex["HEMIUSD"] = 430] = "HEMIUSD";
463
463
  PairIndex[PairIndex["FFUSD"] = 431] = "FFUSD";
464
+ PairIndex[PairIndex["USELESSUSD"] = 432] = "USELESSUSD";
465
+ PairIndex[PairIndex["MONUSD"] = 433] = "MONUSD";
466
+ PairIndex[PairIndex["METUSD"] = 434] = "METUSD";
467
+ PairIndex[PairIndex["TURTLEUSD"] = 435] = "TURTLEUSD";
468
+ PairIndex[PairIndex["SPX500USD"] = 436] = "SPX500USD";
469
+ PairIndex[PairIndex["NAS100USD"] = 437] = "NAS100USD";
470
+ PairIndex[PairIndex["USA30USD"] = 438] = "USA30USD";
464
471
  })(PairIndex = exports.PairIndex || (exports.PairIndex = {}));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gainsnetwork/sdk",
3
- "version": "1.6.0-rc2",
3
+ "version": "1.6.1-rc1",
4
4
  "description": "Gains Network SDK",
5
5
  "main": "./lib/index.js",
6
6
  "files": [