summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2018-10-27 19:25:48 +0200
committerChristian Grothoff <christian@grothoff.org>2018-10-27 19:25:48 +0200
commitc631c1a653020d3f32b394773a8fe95d18c250e3 (patch)
tree281e59eea4cab813c4ef2460c21548e877758080
parent44218be81ce980c46aa47eef9de849d326ff71c8 (diff)
downloaddocs-c631c1a653020d3f32b394773a8fe95d18c250e3.tar.gz
docs-c631c1a653020d3f32b394773a8fe95d18c250e3.tar.bz2
docs-c631c1a653020d3f32b394773a8fe95d18c250e3.zip
update API: auditor needs a few more fields
-rw-r--r--api-auditor.rst23
1 files changed, 19 insertions, 4 deletions
diff --git a/api-auditor.rst b/api-auditor.rst
index 72c2ac38..fcc4df80 100644
--- a/api-auditor.rst
+++ b/api-auditor.rst
@@ -63,6 +63,12 @@ know-your-customer (KYC) registration before issuing contracts.
auditor_public_key: EddsaPublicKey;
}
+ .. note::
+
+ This API is still experimental (and is not yet implemented at the
+ time of this writing).
+
+
.. _exchange-list:
-----------------------
@@ -186,12 +192,21 @@ paid out first.
// Public signing key from the exchange matching @e exchange_sig.
exchange_pub: EddsaPublicKey;
- // Exchange master signature over @e exchange_sig.
- master_sig: EddsaSignature;
-
// Master public key of the exchange corresponding to @e master_sig.
// Identifies the exchange this is about.
- master_public_key: EddsaPublicKey;
+ master_pub: EddsaPublicKey;
+
+ // When does the validity of the exchange_pub end?
+ ep_start: Timestamp;
+
+ // When will the exchange stop using the signing key?
+ ep_expire: Timestamp;
+
+ // When does the validity of the exchange_pub end?
+ ep_end: Timestamp;
+
+ // Exchange master signature over @e exchange_sig.
+ master_sig: EddsaSignature;
}
.. note::