Skip to content

Commit

Permalink
dao_free_coins_from_finished_proposals
Browse files Browse the repository at this point in the history
  • Loading branch information
dkackman committed Dec 14, 2023
1 parent d8c1896 commit 1dc4872
Showing 1 changed file with 41 additions and 0 deletions.
41 changes: 41 additions & 0 deletions src/wallet.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5465,6 +5465,47 @@ paths:
closed:
type: boolean
- $ref: "#/components/schemas/apiResponse"
/dao_free_coins_from_finished_proposals:
post:
tags:
- DAO Wallet
description: Frees coins from proposals that are finished
summary: Frees coins from proposals that are finished.
operationId: dao_free_coins_from_finished_proposals
requestBody:
required: true
content:
application/json:
schema:
type: object
required:
- wallet_id
- proposal_id
properties:
wallet_id:
type: integer
format: uint32
fee:
type: integer
format: uint64
default: 0
responses:
"200":
description: OK
content:
application/json:
schema:
allOf:
- type: object
properties:
txs:
type: array
items:
$ref: "#/components/schemas/transaction_record"
tx_id:
type: string
format: hex
- $ref: "#/components/schemas/apiResponse"
externalDocs:
description: Find out more about chia
url: https://chia.net

0 comments on commit 1dc4872

Please sign in to comment.