aboutsummaryrefslogtreecommitdiff
path: root/src/types.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/types.ts')
-rw-r--r--src/types.ts6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/types.ts b/src/types.ts
index 5d53f8db0..4707edd95 100644
--- a/src/types.ts
+++ b/src/types.ts
@@ -87,7 +87,7 @@ export interface ExchangeForCurrencyRecord {
* Priority for automatic selection when withdrawing.
*/
priority: number;
- pinnedPub: string;
+ pinnedPub?: string;
baseUrl: string;
}
@@ -232,6 +232,7 @@ export interface ExchangeRecord {
baseUrl: string;
masterPublicKey: string;
auditors: Auditor[];
+ currency: string;
/**
* Timestamp for last update.
@@ -249,6 +250,9 @@ export interface ReserveCreationInfo {
selectedDenoms: DenominationRecord[];
withdrawFee: AmountJson;
overhead: AmountJson;
+ wireFees: ExchangeWireFeesRecord;
+ isAudited: boolean;
+ isTrusted: boolean;
}