taler-docs

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

commit 0991388a4f55bd04c37886477dcfe1a32960814f
parent 6c0385cc801d03c3aba2e2dd65992a971696c673
Author: MS <ms@taler.net>
Date:   Sat, 16 Jan 2021 01:25:48 +0100

rephrasing, align API to code

Diffstat:
Mlibeufin/api-nexus.rst | 7++-----
Mlibeufin/nexus-tutorial.rst | 12++++++------
2 files changed, 8 insertions(+), 11 deletions(-)

diff --git a/libeufin/api-nexus.rst b/libeufin/api-nexus.rst @@ -725,11 +725,6 @@ Facades // access, the creator must *also* have access to that resource. creator: string; - // On which currency this facade operates. Note: - // ideally, Nexus will provide a global object that - // holds such information. - currency: string; - // Bank accounts that the facade has read/write // access to. bankAccountsRead: string[]; @@ -810,6 +805,8 @@ The ``taler-wire-gateway`` facade has the following configuration: bankAccount: string; bankConnection: string; + currency: string; + // Corresponds to whether we trust C52, C53 or C54 (SEPA ICT) // for incoming transfers. reserveTransferLevel: "statement" | "report" | "notification"; diff --git a/libeufin/nexus-tutorial.rst b/libeufin/nexus-tutorial.rst @@ -430,18 +430,18 @@ a filtered version of the transaction history, or it might want to refuse payments that do not conform to certain rules. At this moment, only the *Taler facade type* is implemented -in the Nexus, and the command below will show how to instantiate -one under an existing bank account. +in the Nexus, and the command below instantiates one under a +existing bank account / connection pair. .. code-block:: console $ libeufin-cli \ - taler-facade \ + facades \ new-facade \ --facade-name $FACADE_NAME \ $CONNECTION_NAME \ $CUSTOM_RENAMING_FOR_ACCOUNT -At this point, the additional *taler-wire-gateway* (link here) API -becomes offered by the Nexus. The purpose is to let a Taler exchange -to rely on Nexus to manage its bank account. +At this point, the additional *taler-wire-gateway* (FIXME: link +here to API here) API becomes offered by the Nexus. The purpose +is to let a Taler exchange to rely on Nexus to manage its bank account.