Skip to content

Commit

Permalink
add execute_signing_instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
dkackman committed Aug 25, 2024
1 parent 5c81fe9 commit 32122fd
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions src/wallet.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 32122fd

Please sign in to comment.