@arbiwallet/contracts 1.0.44 → 1.0.45

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/payout.ts CHANGED
@@ -26,6 +26,7 @@ export interface ParsePromptPayQrResponse {
26
26
  export interface ConfirmPayoutPaymentRequest {
27
27
  scanId: number;
28
28
  quoteId: string;
29
+ balanceCurrency: string;
29
30
  userId: string;
30
31
  }
31
32
 
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.44",
4
+ "version": "1.0.45",
5
5
  "scripts": {
6
6
  "generate": "protoc -I ./proto ./proto/*.proto --ts_proto_out=./gen --ts_proto_opt=nestJs=true,package=omit"
7
7
  },
@@ -28,7 +28,8 @@ message ParsePromptPayQrResponse {
28
28
  message ConfirmPayoutPaymentRequest {
29
29
  int64 scan_id = 1;
30
30
  string quote_id = 2;
31
- string user_id = 3;
31
+ string balance_currency = 3;
32
+ string user_id = 4;
32
33
  }
33
34
 
34
35
  message ConfirmPayoutPaymentResponse {