[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[taler-docs] branch master updated (9afab33 -> 0991388)
From: |
gnunet |
Subject: |
[taler-docs] branch master updated (9afab33 -> 0991388) |
Date: |
Sat, 16 Jan 2021 01:25:54 +0100 |
This is an automated email from the git hooks/post-receive script.
ms pushed a change to branch master
in repository docs.
from 9afab33 typos and rephrasing
new 6c0385c rephrase and fix option name
new 0991388 rephrasing, align API to code
The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
libeufin/api-nexus.rst | 7 ++-----
libeufin/nexus-tutorial.rst | 27 +++++++++++++--------------
2 files changed, 15 insertions(+), 19 deletions(-)
diff --git a/libeufin/api-nexus.rst b/libeufin/api-nexus.rst
index 0fd0874..7a36f3e 100644
--- 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
index 49bcc23..193322a 100644
--- a/libeufin/nexus-tutorial.rst
+++ b/libeufin/nexus-tutorial.rst
@@ -372,9 +372,9 @@ cron. However, the nexus also has an internal task
scheduling mechanism for
accounts.
-The following two create a schedule for submitting payments hourly,
-fetching transactions (intra-day reports) every 5 minutes and once at 11am
every
-day (inter-day statements):
+The following three commands create a schedule for submitting payments hourly,
+fetching transactions (intra-day reports) every 5 minutes, and (inter-day
statements)
+once at 11pm every day :
.. code-block:: console
@@ -408,10 +408,9 @@ the ``SECONDS`` field
Restore the backup
==================
-The following command shows how to restore all the details
-associated with one bank connection subscription. For EBICS,
-this means that the INI and HIA secret keys will be restored
-for the requesting user.
+The following command restores all the details associated with
+one bank connection subscription. For EBICS, this means that the
+INI and HIA secret keys will be restored for the requesting user.
.. code-block:: console
@@ -419,7 +418,7 @@ for the requesting user.
connection \
restore-backup \
--passphrase $SECRET \
- --outputfile $BACKUP_FILE \
+ --backup-file $BACKUP_FILE \
$CONNECTION_NAME
Creating a Taler facade
@@ -431,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.
--
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.
- [taler-docs] branch master updated (9afab33 -> 0991388),
gnunet <=