[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[taler-docs] branch master updated: add refund and transaction limits to
From: |
gnunet |
Subject: |
[taler-docs] branch master updated: add refund and transaction limits to protocol |
Date: |
Mon, 19 Aug 2024 07:21:25 +0200 |
This is an automated email from the git hooks/post-receive script.
grothoff pushed a commit to branch master
in repository docs.
The following commit(s) were added to refs/heads/master by this push:
new c14900f7 add refund and transaction limits to protocol
c14900f7 is described below
commit c14900f7881ec7f4482e894c0df224939d41f2a3
Author: Christian Grothoff <christian@grothoff.org>
AuthorDate: Mon Aug 19 07:21:15 2024 +0200
add refund and transaction limits to protocol
---
core/api-exchange.rst | 18 ++++++++++++++++--
1 file changed, 16 insertions(+), 2 deletions(-)
diff --git a/core/api-exchange.rst b/core/api-exchange.rst
index 007974d0..49c298a0 100644
--- a/core/api-exchange.rst
+++ b/core/api-exchange.rst
@@ -206,11 +206,25 @@ possibly by using HTTPS.
reserve_closing_delay: RelativeTime;
// Threshold amounts beyond which wallet should
- // trigger the KYC process of the issuing
- // exchange. Optional option, if not given there is no limit.
+ // trigger the KYC process of the issuing exchange.
+ // Optional option, if not given there is no limit.
// Currency must match ``currency``.
wallet_balance_limit_without_kyc?: Amount[];
+ // Maximum amount for individual transactions.
+ // Optional, unlimited if not given.
+ // Must be enforced by both compliant wallets and merchants.
+ // Currency must match ``currency``.
+ // Since protocol **v20**.
+ transaction_amount_limit?: Amount;
+
+ // Maximum amount for refunds.
+ // Optional, unlimited if not given.
+ // Must be enforced by both compliant wallets and merchants.
+ // Currency must match ``currency``.
+ // Since protocol **v20**.
+ refund_amount_limit?: Amount;
+
// Denominations offered by this exchange
denominations: DenomGroup[];
--
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [taler-docs] branch master updated: add refund and transaction limits to protocol,
gnunet <=