aboutsummaryrefslogtreecommitdiff
path: root/src/types.ts
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2017-04-28 23:28:27 +0200
committerFlorian Dold <florian.dold@gmail.com>2017-04-28 23:28:27 +0200
commitd6bf24902a34f2094363121c8d9f4d54db6f7b6c (patch)
tree0794956ebdf91a2fbea16baa0e8aa559f45c5d06 /src/types.ts
parentce97b1076b7e4a53b84d3fd34bf2047580ddeb22 (diff)
downloadwallet-core-d6bf24902a34f2094363121c8d9f4d54db6f7b6c.tar.xz
implement new reserve creation dialog and auditor management
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;
}