aboutsummaryrefslogtreecommitdiff
path: root/src/types/talerTypes.ts
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2020-03-24 15:25:04 +0530
committerFlorian Dold <florian.dold@gmail.com>2020-03-24 15:25:04 +0530
commit01e83df471802d3253953b00672af0bc879403fe (patch)
tree80f763be28055139221fafb50e8ded7a89b8bc3d /src/types/talerTypes.ts
parentc4d289956275677b24459237d13ed8c23a606079 (diff)
downloadwallet-core-01e83df471802d3253953b00672af0bc879403fe.tar.xz
helpers for auditor integration test
Diffstat (limited to 'src/types/talerTypes.ts')
-rw-r--r--src/types/talerTypes.ts14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/types/talerTypes.ts b/src/types/talerTypes.ts
index 569b93120..e5be32abe 100644
--- a/src/types/talerTypes.ts
+++ b/src/types/talerTypes.ts
@@ -759,6 +759,20 @@ export class WithdrawResponse {
ev_sig: string;
}
+export interface CoinDumpJson {
+ coins: Array<{
+ denom_pub: string;
+ denom_pub_hash: string;
+ denom_value: string;
+ coin_pub: string;
+ exchange_base_url: string;
+ remaining_value: string;
+ refresh_parent_coin_pub: string | undefined;
+ withdrawal_reserve_pub: string | undefined;
+ coin_suspended: boolean;
+ }>;
+}
+
export type AmountString = string;
export type Base32String = string;
export type EddsaSignatureString = string;