commit ccb05ec71ca4ab82ff589633ef661a39016bb9ba
parent bc932d35b13d15440dc046bc2cd67bfa8a2bcdcd
Author: Antoine A <>
Date: Sat, 14 Feb 2026 15:36:04 +0100
wg: add metadata field
Diffstat:
2 files changed, 10 insertions(+), 4 deletions(-)
diff --git a/core/api-bank-wire.rst b/core/api-bank-wire.rst
@@ -1,6 +1,6 @@
..
This file is part of GNU TALER.
- Copyright (C) 2019-2025 Taler Systems SA
+ Copyright (C) 2019-2025, 2027 Taler Systems SA
TALER is free software; you can redistribute it and/or modify it under the
terms of the GNU Affero General Public License as published by the Free Software
@@ -100,6 +100,9 @@ Making Transactions
// Base URL of the exchange. Shall be included by the bank gateway
// in the appropriate section of the wire transfer details.
exchange_base_url: string;
+
+ // Optional additional metadata to be stored in the transaction.
+ metadata?: string;
// Wire transfer identifier chosen by the exchange,
// used by the merchant to identify the Taler order(s)
@@ -262,6 +265,9 @@ Making Transactions
// Base URL of the exchange. Shall be included by the bank gateway
// in the appropriate section of the wire transfer details.
exchange_base_url: string;
+
+ // Optional additional metadata to be stored in the transaction.
+ metadata?: string;
// Wire transfer identifier chosen by the exchange,
// used by the merchant to identify the Taler order(s)
@@ -504,6 +510,9 @@ accounts are merged into a single history.
// Base URL of the exchange.
exchange_base_url: string;
+
+ // Optional additional metadata.
+ metadata?: string;
}
diff --git a/design-documents/080-short-wire-subject.rst b/design-documents/080-short-wire-subject.rst
@@ -306,9 +306,6 @@ API
// Transfer types
type: "reserve" | "kyc";
- // Pow salt used
- pow: string;
-
// Subject format requested
format: SubjectFormat;