@arbiwallet/contracts 1.0.253 → 1.0.255

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.
@@ -90,6 +90,10 @@ export interface GetExchangeDealsItem {
90
90
  calculationSourceId?: string | undefined;
91
91
  manager?: GetExchangeDealsManager | undefined;
92
92
  createdAt: string;
93
+ exchangeRate1Iter?: number | undefined;
94
+ exchangeRate2Iter?: number | undefined;
95
+ usdtRate?: number | undefined;
96
+ payed: boolean;
93
97
  }
94
98
 
95
99
  export interface GetExchangeDealsResponse {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@arbiwallet/contracts",
3
3
  "descriptions": "Generate and manage smart contracts for ArbiWallet",
4
- "version": "1.0.253",
4
+ "version": "1.0.255",
5
5
  "scripts": {
6
6
  "generate": "protoc -I ./proto ./proto/*.proto --ts_proto_out=./gen --ts_proto_opt=nestJs=true,package=omit"
7
7
  },
@@ -118,6 +118,10 @@ message GetExchangeDealsItem {
118
118
  optional string calculation_source_id = 11;
119
119
  optional GetExchangeDealsManager manager = 12;
120
120
  string created_at = 13;
121
+ optional double exchange_rate_1_iter = 14;
122
+ optional double exchange_rate_2_iter = 15;
123
+ optional double usdt_rate = 16;
124
+ bool payed = 17;
121
125
  }
122
126
 
123
127
  message GetExchangeDealsResponse {