@cryptorubic/core 1.7.4-alpha.zkevm.1 → 1.8.0-alpha.houdini.1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cryptorubic/core",
3
- "version": "1.7.4-alpha.zkevm.1",
3
+ "version": "1.8.0-alpha.houdini.1",
4
4
  "dependencies": {
5
5
  "bignumber.js": "9.1.2",
6
6
  "tslib": "*"
@@ -48,4 +48,5 @@ export interface QuoteResponseInterface {
48
48
  * Does transaction go through rubic contracts or not
49
49
  */
50
50
  useRubicContract: boolean;
51
+ private: boolean;
51
52
  }
@@ -10,6 +10,14 @@ export interface WsQuoteErrorInterface {
10
10
  * Amount of calculated trades
11
11
  */
12
12
  calculated: number;
13
+ /**
14
+ * Total amount of available private trades
15
+ */
16
+ privateTotal: number;
17
+ /**
18
+ * Amount of calculated private trades
19
+ */
20
+ privateCalculated: number;
13
21
  /**
14
22
  * Trade data
15
23
  */
@@ -10,6 +10,14 @@ export interface WsQuoteResponseInterface {
10
10
  * Amount of calculated trades
11
11
  */
12
12
  calculated: number;
13
+ /**
14
+ * Total amount of available private trades
15
+ */
16
+ privateTotal: number;
17
+ /**
18
+ * Amount of calculated private trades
19
+ */
20
+ privateCalculated: number;
13
21
  /**
14
22
  * Trade data
15
23
  */