@arbiwallet/contracts 1.0.253 → 1.0.254
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
CHANGED
|
@@ -90,6 +90,9 @@ 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;
|
|
93
96
|
}
|
|
94
97
|
|
|
95
98
|
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.
|
|
4
|
+
"version": "1.0.254",
|
|
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,9 @@ 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;
|
|
121
124
|
}
|
|
122
125
|
|
|
123
126
|
message GetExchangeDealsResponse {
|