-
Notifications
You must be signed in to change notification settings - Fork 217
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
Display Shelley migrations in Api doc #1687
Conversation
@@ -1660,6 +1660,7 @@ x-tagGroups: | |||
- Addresses | |||
- Coin Selections | |||
- Transactions | |||
- Migrations |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Shelley migrations were not displayed in api doc because of this 👆
2488641
to
1867266
Compare
specifications/api/swagger.yaml
Outdated
|
||
Migrate all funds from a Shelley wallet to a specified set of addresses. | ||
Create one or several transactions sending all funds from a Shelley wallet to set of addresses. | ||
This operation tries to preserve as much as possible the current UTxO shape of a wallet (hence | ||
why several transactions may be needed). |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I wonder whether word why
is needed here 🤔 @rvl / @jonathanknowles could you voice your opinion?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
How about this
Submit one or more transactions which transfers all funds from a Shelley wallet to a set of addresses.
This operation attempts to preserve the UTxO "shape" of a wallet as far as possible. That is, coins will not be agglomerated.
Therefore, if the wallet has a large UTxO set, several transactions may be needed.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Reworded in 508e41b.
bors r+ |
Build succeeded |
Issue Number
#1675
Overview
1867266
Display Shelley migrations in swagger spec.
508e41b
Reword migration description according to review suggestions
Comments
Shelley migrations, although included in
swagger.yaml
, were not being displayed in the API doc. This pr fixes this. Also includes minor rewording of the migration endpoints descriptions.