summaryrefslogtreecommitdiff
path: root/packages/taler-util/src/transactions-types.ts
diff options
context:
space:
mode:
authorFlorian Dold <florian@dold.me>2023-11-22 15:20:10 +0100
committerFlorian Dold <florian@dold.me>2023-11-22 17:08:15 +0100
commitbd37a0b04123d734e1e3fae105f0d9c24279629f (patch)
tree31f03c2acd3c1f123f8762391456b1aa22df9803 /packages/taler-util/src/transactions-types.ts
parent32182fb1b912e1136ba933c4a4f204e6e2f33de2 (diff)
downloadwallet-core-bd37a0b04123d734e1e3fae105f0d9c24279629f.tar.gz
wallet-core-bd37a0b04123d734e1e3fae105f0d9c24279629f.tar.bz2
wallet-core-bd37a0b04123d734e1e3fae105f0d9c24279629f.zip
wallet-core: implement and test currency conversion withdrawals
Diffstat (limited to 'packages/taler-util/src/transactions-types.ts')
-rw-r--r--packages/taler-util/src/transactions-types.ts5
1 files changed, 5 insertions, 0 deletions
diff --git a/packages/taler-util/src/transactions-types.ts b/packages/taler-util/src/transactions-types.ts
index 3a7f4d541..f2bf49b00 100644
--- a/packages/taler-util/src/transactions-types.ts
+++ b/packages/taler-util/src/transactions-types.ts
@@ -51,6 +51,7 @@ import {
TalerErrorDetail,
TransactionIdStr,
TransactionStateFilter,
+ WithdrawalAccountInfo,
} from "./wallet-types.js";
export interface TransactionsRequest {
@@ -237,9 +238,13 @@ interface WithdrawalDetailsForManualTransfer {
* Payto URIs that the exchange supports.
*
* Already contains the amount and message.
+ *
+ * @deprecated in favor of exchangeCreditAccounts
*/
exchangePaytoUris: string[];
+ exchangeCreditAccounts?: WithdrawalAccountInfo[];
+
// Public key of the reserve
reservePub: string;