@arbiwallet/contracts 1.0.65 → 1.0.66

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
@@ -39,6 +39,7 @@ export interface ConfirmPayoutPaymentResponse {
39
39
 
40
40
  export interface HandlePayoutWebhookRequest {
41
41
  rawBody: Uint8Array;
42
+ xSignature: string;
42
43
  }
43
44
 
44
45
  export interface HandlePayoutWebhookResponse {
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.65",
4
+ "version": "1.0.66",
5
5
  "scripts": {
6
6
  "generate": "protoc -I ./proto ./proto/*.proto --ts_proto_out=./gen --ts_proto_opt=nestJs=true,package=omit"
7
7
  },
@@ -42,6 +42,7 @@ message ConfirmPayoutPaymentResponse {
42
42
 
43
43
  message HandlePayoutWebhookRequest {
44
44
  bytes rawBody = 1;
45
+ string x_signature = 2;
45
46
  }
46
47
 
47
48
  message HandlePayoutWebhookResponse {