@arbiwallet/contracts 1.0.254 → 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.
@@ -93,6 +93,7 @@ export interface GetExchangeDealsItem {
93
93
  exchangeRate1Iter?: number | undefined;
94
94
  exchangeRate2Iter?: number | undefined;
95
95
  usdtRate?: number | undefined;
96
+ payed: boolean;
96
97
  }
97
98
 
98
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.254",
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
  },
@@ -121,6 +121,7 @@ message GetExchangeDealsItem {
121
121
  optional double exchange_rate_1_iter = 14;
122
122
  optional double exchange_rate_2_iter = 15;
123
123
  optional double usdt_rate = 16;
124
+ bool payed = 17;
124
125
  }
125
126
 
126
127
  message GetExchangeDealsResponse {