aboutsummaryrefslogtreecommitdiff
path: root/src/types/dbTypes.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/types/dbTypes.ts')
-rw-r--r--src/types/dbTypes.ts8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/types/dbTypes.ts b/src/types/dbTypes.ts
index 36b45f5ac..f28426ac9 100644
--- a/src/types/dbTypes.ts
+++ b/src/types/dbTypes.ts
@@ -30,6 +30,7 @@ import {
MerchantRefundPermission,
PayReq,
TipResponse,
+ ExchangeSignKeyJson,
} from "./talerTypes";
import { Index, Store } from "../util/query";
@@ -410,6 +411,7 @@ export interface ExchangeDetails {
* Master public key of the exchange.
*/
masterPublicKey: string;
+
/**
* Auditors (partially) auditing the exchange.
*/
@@ -426,6 +428,12 @@ export interface ExchangeDetails {
protocolVersion: string;
/**
+ * Signing keys we got from the exchange, can also contain
+ * older signing keys that are not returned by /keys anymore.
+ */
+ signingKeys: ExchangeSignKeyJson[];
+
+ /**
* Timestamp for last update.
*/
lastUpdateTime: Timestamp;