taler-docs

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

commit 9f1626c7605b6b348135ca1e6bae80b28880e4c5
parent 5b8e0b0c282f0914d667298579792bdc6504e02d
Author: Christian Grothoff <christian@grothoff.org>
Date:   Sun, 23 Apr 2023 15:20:02 +0200

misc updates

Diffstat:
Mcore/api-exchange.rst | 8++++----
Mdesign-documents/037-wallet-transactions-lifecycle.rst | 2+-
Mmanpages/taler.conf.5.rst | 4++++
Mtransaction-deposit-states.dot | 2+-
4 files changed, 10 insertions(+), 6 deletions(-)

diff --git a/core/api-exchange.rst b/core/api-exchange.rst @@ -5157,13 +5157,13 @@ KYC status updates If the KYC plugin logic is OAuth 2.0, the query parameters are: - :query code=CODE : OAuth 2.0 code argument. + :query code=CODE: OAuth 2.0 code argument. :query state=STATE: OAuth 2.0 state argument with the H_PAYTO. - .. note:: + .. note:: - Depending on the OAuth variant used, additional - query parameters may need to be passed here. + Depending on the OAuth variant used, additional + query parameters may need to be passed here. **Response:** diff --git a/design-documents/037-wallet-transactions-lifecycle.rst b/design-documents/037-wallet-transactions-lifecycle.rst @@ -686,7 +686,7 @@ Transaction Type: Deposit Exchange requires KYC (or AML) before making the wire transfer. - * ``[poll-success] => done`` + * ``[long-poll:kyc] => done`` * ``[action:suspend] => suspended(kyc)`` * ``suspended(kyc)`` diff --git a/manpages/taler.conf.5.rst b/manpages/taler.conf.5.rst @@ -588,6 +588,10 @@ can be changed via the command-line. By default, it is simply INSTANCE Which instance of the backend should transactions be imported for by this wirewatcher. +BACKEND_URL + URL of the taler merchant backend (including instance) to interact with. +BACKEND_API_KEY + API key (including "secret-token:" prefix) to use to access the BACKEND_URL. WIRE_GATEWAY_URL Under which URL is the wire gateway (libeufin facade) reachable that makes bank transfer data availalbe to us. WIRE_GATEWAY_AUTH_METHOD diff --git a/transaction-deposit-states.dot b/transaction-deposit-states.dot @@ -30,7 +30,7 @@ digraph G { pending_track->pending_kyc; pending_kyc->suspended_kyc [color="blue", label="suspend"]; - pending_kyc->done; + pending_kyc->done [color="purple", label="long-poll:kyc"]; suspended_kyc->pending_kyc [color="blue", label="resume"]; suspended_kyc->deleted [color="blue", label="force-delete"];