aboutsummaryrefslogtreecommitdiff
path: root/src/types/history.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/types/history.ts')
-rw-r--r--src/types/history.ts20
1 files changed, 14 insertions, 6 deletions
diff --git a/src/types/history.ts b/src/types/history.ts
index 7acf84dc5..ad7d98df0 100644
--- a/src/types/history.ts
+++ b/src/types/history.ts
@@ -466,12 +466,11 @@ export interface HistoryPaymentAbortedEvent {
}
export interface VerbosePayCoinDetails {
- coins:
- {
- value: string,
- contribution: string;
- denomPub: string;
- }[],
+ coins: {
+ value: string;
+ contribution: string;
+ denomPub: string;
+ }[];
}
/**
@@ -549,6 +548,13 @@ export interface HistoryRefunded {
amountRefundedEffective: string;
}
+export interface VerboseRefreshDetails {
+ outputCoins: {
+ denomPub: string;
+ value: string;
+ }[];
+}
+
/**
* Event to indicate that a group of refresh sessions has completed.
*/
@@ -583,6 +589,8 @@ export interface HistoryRefreshedEvent {
* more refresh session IDs.
*/
refreshGroupId: string;
+
+ verboseDetails: VerboseRefreshDetails;
}
export interface VerboseWithdrawDetails {