aboutsummaryrefslogtreecommitdiff
path: root/extension/lib/wallet/types.ts
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2016-02-19 00:49:22 +0100
committerFlorian Dold <florian.dold@gmail.com>2016-02-19 00:49:22 +0100
commitf79533614f46ff2c1c70071e19549472095d447c (patch)
tree50279363142e5a219091f9bfd96030f30835b324 /extension/lib/wallet/types.ts
parentd8609a70e9d843bbd83d95adc866b331c749651a (diff)
downloadwallet-core-f79533614f46ff2c1c70071e19549472095d447c.tar.xz
add crypto worker thread
Diffstat (limited to 'extension/lib/wallet/types.ts')
-rw-r--r--extension/lib/wallet/types.ts19
1 files changed, 19 insertions, 0 deletions
diff --git a/extension/lib/wallet/types.ts b/extension/lib/wallet/types.ts
index 3b0cb2638..d18bd95f4 100644
--- a/extension/lib/wallet/types.ts
+++ b/extension/lib/wallet/types.ts
@@ -107,6 +107,25 @@ export interface ReserveCreationInfo {
withdrawFee: AmountJson;
}
+
+export interface PreCoin {
+ coinPub: string;
+ coinPriv: string;
+ reservePub: string;
+ denomPub: string;
+ blindingKey: string;
+ withdrawSig: string;
+ coinEv: string;
+ mintBaseUrl: string;
+ coinValue: AmountJson;
+}
+
+export interface Reserve {
+ mint_base_url: string
+ reserve_priv: string;
+ reserve_pub: string;
+}
+
export interface Notifier {
notify();
} \ No newline at end of file