commit 3d183fabb76492ed1870f0c81308001fe1505ab7
parent 518146137112c711daa32099b61d69dd06f432ca
Author: Florian Dold <florian@dold.me>
Date: Sat, 30 May 2026 01:00:50 +0200
fix 'wire gateway / prepared transfer' confusion
Diffstat:
4 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/core/api-exchange.rst b/core/api-exchange.rst
@@ -44,7 +44,7 @@ The current protocol version is **v35**.
* ``v32``: support for extra_wire_subject_metadata
* ``v33``: addition of accumulated_total_without_fee in ``/batch-deposit``
* ``v34``: new offline signature; support for open_banking_gateway and
- wire_transfer_gateway per wire account in ``/keys``
+ prepared_transfer_url per wire account in ``/keys``
* ``v35``: adds ``default_p2p_push_expiration`` to ``/keys``
**Upcoming versions:**
diff --git a/core/exchange/get-keys.rst b/core/exchange/get-keys.rst
@@ -223,7 +223,7 @@
// request (short) wire transfer subjects to wire funds to this
// exchange without having to encode the full public key.
// @since protocol **v34**.
- wire_transfer_gateway?: string;
+ prepared_transfer_url?: string;
// Restrictions that apply to bank accounts that would send
// funds to the exchange (crediting this exchange bank account).
diff --git a/core/exchange/post-management-wire.rst b/core/exchange/post-management-wire.rst
@@ -74,7 +74,7 @@
// Base URL of a wire transfer gateway service.
// Only given if available.
// @since protocol **v34**.
- wire_transfer_gateway?: string;
+ prepared_transfer_url?: string;
// Restrictions imposed on crediting the account.
credit_restrictions: AccountRestriction[];
diff --git a/manpages/taler-exchange-offline.1.rst b/manpages/taler-exchange-offline.1.rst
@@ -281,8 +281,8 @@ Afterwards, optional arguments can be given:
from this exchange. Optional (as obviously not every
exchange will have an open banking gateway attached).
- * ``wire-transfer-gateway`` $URL: specifies a
- wire transfer gateway base URL where wallets and merchants can
+ * ``prepared-transfer-url`` $URL: specifies a
+ Prepared transfer API base URL where wallets and merchants can
request (short) wire transfer subjects to wire funds to this
exchange without having to encode the full public key.
See also design document 80.