commit a5a19f26f05c2bb1edf5e85001be56619d0740a1 parent e1ba8dad8c87f23bbbfc917ef5e7718ca6ce3065 Author: Christian Grothoff <christian@grothoff.org> Date: Fri, 10 Jul 2020 22:33:37 +0200 Merge branch 'master' of git+ssh://git.taler.net/docs Diffstat:
| M | taler-wallet.rst | | | 58 | ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ |
1 file changed, 58 insertions(+), 0 deletions(-)
diff --git a/taler-wallet.rst b/taler-wallet.rst @@ -398,6 +398,64 @@ Refunds contractTermsHash: string; } +Exchange Management: List Exchanges +----------------------------------- + +:name: ``"listExchanges"`` +:description: + List all exchanges. +:cli: + ``taler-wallet-cli exchanges list`` +:response: + .. ts:def:: ExchangesListRespose + + interface ExchangesListRespose { + exchanges: ExchangeListItem[]; + } + + .. ts:def:: ExchangeListItem + + interface ExchangeListItem { + exchangeBaseUrl: string; + currency: string; + paytoUris: string[]; + } + +Exchange Management: Add Exchange +--------------------------------- + +:name: ``"addExchange"`` +:description: + Add an exchange. +:cli: + ``taler-wallet-cli exchanges add $URL`` +:request: + .. ts:def:: ExchangeAddRequest + + interface ExchangeAddRequest { + exchangeBaseUrl: string; + } +:response: + On success, the response is an empty object. + +Withdrawal: Get Manual Withdrawal Info +-------------------------------------- + +:name: ``"getWithdrawalDetailsForAmount"`` +:description: + Get information about fees and exchange for a manual withdrawal of a given amount. +:cli: + ``taler-wallet-cli advanced manual-withdrawal-details $URL $AMOUNT`` +:request: + .. ts:def:: GetManualWithdrawalDetailsRequest + + interface ExchangeAddRequest { + exchangeBaseUrl: string; + amount: string; + } +:response: + An ``ExchangeWithdrawDetails`` object (to be documented, see `here + <https://git.taler.net/wallet-core.git/tree/src/types/walletTypes.ts#n61>`__). Integration Tests =================