From 32122fdd5a43574c9262bb7b6644a979844cebef Mon Sep 17 00:00:00 2001 From: Don Kackman Date: Sun, 25 Aug 2024 09:13:35 -0500 Subject: [PATCH] add execute_signing_instructions --- src/wallet.yaml | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) diff --git a/src/wallet.yaml b/src/wallet.yaml index cae0e3c..f55db04 100644 --- a/src/wallet.yaml +++ b/src/wallet.yaml @@ -5866,6 +5866,41 @@ paths: version: type: string - $ref: "#/components/schemas/apiResponse" + /execute_signing_instructions: + post: + tags: + - Signing + summary: Executes signing instructions. + description: Executes signing instructions. + operationId: execute_signing_instructions + requestBody: + required: true + content: + application/json: + schema: + type: object + required: + - signing_instructions + properties: + partial_allowed: + type: boolean + default: false + signing_instructions: + $ref: "#/components/schemas/signing_instructions" + responses: + "200": + description: OK + content: + application/json: + schema: + allOf: + - type: object + properties: + signing_responses: + type: array + items: + $ref: "#/components/schemas/signing_response" + - $ref: "#/components/schemas/apiResponse" externalDocs: description: Find out more about chia url: https://chia.net