summaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
Diffstat (limited to 'core')
-rw-r--r--core/api-exchange.rst15
1 files changed, 15 insertions, 0 deletions
diff --git a/core/api-exchange.rst b/core/api-exchange.rst
index d36fad4a..e6a03f28 100644
--- a/core/api-exchange.rst
+++ b/core/api-exchange.rst
@@ -388,6 +388,16 @@ Management operations authorized by master key
// The exchange's future signing keys (only those lacking a master signature).
future_signkeys: FutureSignKey[];
+ // Master public key expected by this exchange (provided so that the
+ // offline signing tool can check that it has the right key).
+ master_pub: EddsaPublicKey;
+
+ // Public key of the denomination security module.
+ denom_secmod_pub: EddsaPublicKey;
+
+ // Public key of the signkey security module.
+ signkey_secmod_pub: EddsaPublicKey;
+
}
.. ts:def:: FutureDenom
@@ -423,6 +433,9 @@ Management operations authorized by master key
// Fee charged by the exchange for refunding a coin of this denomination
fee_refund: Amount;
+ // Signature over this denomination by the denomination security module.
+ denom_secmod_sig: EddsaSignature;
+
}
.. ts:def:: FutureSignKey
@@ -442,6 +455,8 @@ Management operations authorized by master key
// henceforth no longer be considered valid in legal disputes.
stamp_end: Timestamp;
+ // Signature over this signing key by the signkey security module.
+ signkey_secmod_sig: EddsaSignature;
}