aboutsummaryrefslogtreecommitdiff
path: root/src/types/talerTypes.ts
diff options
context:
space:
mode:
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;