@cryptorubic/core 1.8.0-alpha.houdini.3 → 1.8.0-alpha.houdini.4

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.8.0-alpha.houdini.3",
3
+ "version": "1.8.0-alpha.houdini.4",
4
4
  "dependencies": {
5
5
  "bignumber.js": "9.1.2",
6
6
  "tslib": "*"
@@ -12,4 +12,8 @@ export interface PrivateTransactionInterface {
12
12
  * extraFields.value is memo and extraFields.name is name of memo for UI
13
13
  */
14
14
  extraFields?: object;
15
+ /**
16
+ * id for status tracking
17
+ */
18
+ exchangeId?: string;
15
19
  }
@@ -5,6 +5,7 @@ export interface TransactionInterface {
5
5
  to?: string;
6
6
  value?: string;
7
7
  depositAddress?: string;
8
+ exchangeId?: string;
8
9
  extraFields?: object;
9
10
  feeLimit?: number;
10
11
  tonMessages?: TonEncodedConfigInterface[];
@@ -1,23 +1,9 @@
1
1
  export interface UniqueProviderInfoInterface {
2
- changenowId?: string;
3
- changellyId?: string;
4
- simpleSwapId?: string;
5
- retroBridgeId?: string;
6
2
  squidrouterRequestId?: string;
7
3
  rangoRequestId?: string;
8
4
  retrobridgeId?: string;
9
5
  relayId?: string;
10
- exolixId?: string;
11
- quickexId?: string;
12
6
  acrossId?: string;
13
- nearIntentsId?: string;
14
- houdiniId?: string;
15
- clearswapId?: string;
16
- stealthexId?: string;
17
- changeHeroId?: string;
18
- xgramId?: string;
19
- instaswapId?: string;
20
- baltexId?: string;
21
7
  additionalData?: {
22
8
  [key: string]: unknown;
23
9
  };