summaryrefslogtreecommitdiff
path: root/core/api-auditor.rst
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2021-03-29 12:21:02 +0200
committerChristian Grothoff <christian@grothoff.org>2021-03-29 12:21:02 +0200
commit9753a6edb80e8e5496a427bbec013fc45b140b65 (patch)
tree9588684d95def42ead178d9b90d745006998adf9 /core/api-auditor.rst
parent319274126cd0d4baafdac1fe8fb9a90359939d05 (diff)
parent5f62198bd0ccc1599a836295f4c42be84b362606 (diff)
downloaddocs-9753a6edb80e8e5496a427bbec013fc45b140b65.tar.gz
docs-9753a6edb80e8e5496a427bbec013fc45b140b65.tar.bz2
docs-9753a6edb80e8e5496a427bbec013fc45b140b65.zip
Merge branch 'master' of git+ssh://git.taler.net/docs
Diffstat (limited to 'core/api-auditor.rst')
-rw-r--r--core/api-auditor.rst22
1 files changed, 11 insertions, 11 deletions
diff --git a/core/api-auditor.rst b/core/api-auditor.rst
index fd3803ce..11294d0a 100644
--- a/core/api-auditor.rst
+++ b/core/api-auditor.rst
@@ -41,7 +41,7 @@ know-your-customer (KYC) registration before issuing contracts.
**Response:**
:http:statuscode:`200 OK`:
- The auditor responds with a `AuditorVersion`_ object. This request should
+ The auditor responds with an `AuditorVersion`_ object. This request should
virtually always be successful.
**Details:**
@@ -59,7 +59,7 @@ know-your-customer (KYC) registration before issuing contracts.
// Return which currency this auditor is auditing for.
currency: string;
- // EdDSA master public key of the auditor
+ // EdDSA master public key of the auditor.
auditor_public_key: EddsaPublicKey;
}
@@ -94,7 +94,7 @@ know-your-customer (KYC) registration before issuing contracts.
.. ts:def:: ExchangeList
interface ExchangeList {
- // Exchanges audited by this auditor
+ // Exchanges audited by this auditor.
exchanges: ExchangeEntry[];
}
@@ -102,10 +102,10 @@ know-your-customer (KYC) registration before issuing contracts.
interface ExchangeEntry {
- // Master public key of the exchange
+ // Master public key of the exchange.
master_pub: EddsaPublicKey;
- // Base URL of the exchange
+ // Base URL of the exchange.
exchange_url: string;
}
@@ -170,7 +170,7 @@ paid out first.
// How much time does the merchant have to issue a refund
// request? Zero if refunds are not allowed.
- refund_deadline : Timestamp;
+ refund_deadline: Timestamp;
// Amount to be deposited, excluding fee. Calculated from the
// amount with fee and the fee from the deposit request.
@@ -186,13 +186,13 @@ paid out first.
merchant_pub: EddsaPublicKey;
// Signature from the exchange of type
- // TALER_SIGNATURE_EXCHANGE_CONFIRM_DEPOSIT.
+ // ``TALER_SIGNATURE_EXCHANGE_CONFIRM_DEPOSIT``.
exchange_sig: EddsaSignature;
- // Public signing key from the exchange matching @e exchange_sig.
+ // Public signing key from the exchange matching ``exchange_sig``.
exchange_pub: EddsaPublicKey;
- // Master public key of the exchange corresponding to @e master_sig.
+ // Master public key of the exchange corresponding to ``master_sig``.
// Identifies the exchange this is about.
master_pub: EddsaPublicKey;
@@ -205,7 +205,7 @@ paid out first.
// When does the validity of the exchange_pub end?
ep_end: Timestamp;
- // Exchange master signature over @e exchange_sig.
+ // Exchange master signature over ``exchange_sig``.
master_sig: EddsaSignature;
}
@@ -229,4 +229,4 @@ misbehavior of an exchange to the auditor.
.. http:put:: /complain
-Complain about missbehavior to the auditor.
+Complain about misbehavior to the auditor.