@arbiwallet/contracts 1.0.264 → 1.0.265
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/gen/exchange_core.ts +1 -0
- package/package.json +1 -1
- package/proto/exchange_core.proto +18 -17
package/gen/exchange_core.ts
CHANGED
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.
|
|
4
|
+
"version": "1.0.265",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"generate": "protoc -I ./proto ./proto/*.proto --ts_proto_out=./gen --ts_proto_opt=nestJs=true,package=omit"
|
|
7
7
|
},
|
|
@@ -182,23 +182,24 @@ message GetExchangeDealsItem {
|
|
|
182
182
|
string output_currency_id = 12;
|
|
183
183
|
string output_wallet_id = 13;
|
|
184
184
|
string exchange_status_id = 14;
|
|
185
|
-
|
|
186
|
-
bool
|
|
187
|
-
|
|
188
|
-
optional string
|
|
189
|
-
optional string
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
optional
|
|
193
|
-
string
|
|
194
|
-
string
|
|
195
|
-
|
|
196
|
-
optional
|
|
197
|
-
optional double
|
|
198
|
-
optional double
|
|
199
|
-
optional double
|
|
200
|
-
|
|
201
|
-
bool
|
|
185
|
+
string exchange_status_name = 15;
|
|
186
|
+
bool status = 16;
|
|
187
|
+
bool payed = 17;
|
|
188
|
+
optional string referrer_id = 18;
|
|
189
|
+
optional string referrer_text = 19;
|
|
190
|
+
optional string office_id = 20;
|
|
191
|
+
repeated GetExchangeDealsReceipt receipts = 21;
|
|
192
|
+
optional GetExchangeDealsManager manager = 22;
|
|
193
|
+
optional string payment_id = 23;
|
|
194
|
+
string payer_name = 24;
|
|
195
|
+
string payer_data = 25;
|
|
196
|
+
optional string calculation_source_id = 26;
|
|
197
|
+
optional double exchange_rate_1_iter = 27;
|
|
198
|
+
optional double exchange_rate_2_iter = 28;
|
|
199
|
+
optional double usdt_rate = 29;
|
|
200
|
+
optional double output_amount_in_usdt = 30;
|
|
201
|
+
bool include_in_total_calculation = 31;
|
|
202
|
+
bool one_currency_exchange = 32;
|
|
202
203
|
}
|
|
203
204
|
|
|
204
205
|
message GetExchangeDealsResponse {
|