taler-docs

Documentation for GNU Taler components, APIs and protocols
Log | Files | Refs | README | LICENSE

commit 03d48f5bcc2bfe25db6568380d92f31c90a4e42c
parent d0a2ec2bbf0f8473d7a66b28bf8cd1f825ef97d2
Author: Florian Dold <florian@dold.me>
Date:   Tue, 18 Nov 2025 18:21:02 +0100

minor DD75 tweaks

Diffstat:
Mdesign-documents/075-wallet-bban-support.rst | 9++++++---
1 file changed, 6 insertions(+), 3 deletions(-)

diff --git a/design-documents/075-wallet-bban-support.rst b/design-documents/075-wallet-bban-support.rst @@ -36,16 +36,19 @@ IBAN and vice versa. The following wire type / currency pairs must support BBAN entry: -* ``iban`` / ``HUF`` => country code ``HU`` -* feature flag only: ``iban`` / ``CHF`` => country code ``CH`` +* ``iban`` / ``HUF`` +* feature flag only: ``iban`` / ``CHF`` Wallet-core: * We provide two new requests to allow conversion between BBAN/IBAN: - * ``convertBbanToPaytoIban({ bban: string, country: string }) -> { paytoUri: string }`` + * ``convertBbanToPaytoIban({ bban: string, currency: string }) -> { paytoUri: string }`` * ``convertPaytoIbanToBban({ paytoUri: string }) -> { bban: string }`` +In order to allow copy+pasting an IBAN into a BBAN field, the ``convertBbanToPaytoIban`` should +also accept actual IBANs as input and convert them to a payto URI. + Test Plan =========