Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: missing refundAddress in reverse swap swagger #789

Merged
merged 1 commit into from
Jan 17, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion lib/api/v2/routers/SwapRouter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -819,7 +819,10 @@ class SwapRouter extends RouterBase {
* description: HTLC address in which coins will be locked
* refundPublicKey:
* type: string
* description: Public key of Boltz that will be used to refund the onchain HTLC
* description: Public key of Boltz that will be used to refund UTXO HTLCs
* refundAddress:
* type: string
* description: Address that should be specified as refund address for EVM lockup transactions
* timeoutBlockHeight:
* type: number
* description: Timeout block height of the onchain HTLC
Expand Down
6 changes: 5 additions & 1 deletion swagger-spec.json
Original file line number Diff line number Diff line change
Expand Up @@ -2604,7 +2604,11 @@
},
"refundPublicKey": {
"type": "string",
"description": "Public key of Boltz that will be used to refund the onchain HTLC"
"description": "Public key of Boltz that will be used to refund UTXO HTLCs"
},
"refundAddress": {
"type": "string",
"description": "Address that should be specified as refund address for EVM lockup transactions"
},
"timeoutBlockHeight": {
"type": "number",
Expand Down
Loading