diff options
author | Sebastian <sebasjm@gmail.com> | 2023-03-29 15:14:02 -0300 |
---|---|---|
committer | Sebastian <sebasjm@gmail.com> | 2023-03-29 15:14:24 -0300 |
commit | 74dba9506dba104d918c5386e67146f71f07436c (patch) | |
tree | 2d6434f66e2a14a56f0a748733462a0089bdee44 /packages/taler-wallet-core/src/db.ts | |
parent | 329b766ae78405e086e7b6f078168bc0c136d317 (diff) |
show wire details when the deposit has been wired
Diffstat (limited to 'packages/taler-wallet-core/src/db.ts')
-rw-r--r-- | packages/taler-wallet-core/src/db.ts | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/packages/taler-wallet-core/src/db.ts b/packages/taler-wallet-core/src/db.ts index cd676b7ca..fb5ea025a 100644 --- a/packages/taler-wallet-core/src/db.ts +++ b/packages/taler-wallet-core/src/db.ts @@ -1671,6 +1671,20 @@ export interface DepositGroupRecord { operationStatus: OperationStatus; transactionPerCoin: TransactionStatus[]; + + trackingState?: { + [signature: string]: { + // Raw wire transfer identifier of the deposit. + wireTransferId: string; + // When was the wire transfer given to the bank. + timestampExecuted: TalerProtocolTimestamp; + // Total amount transfer for this wtid (including fees) + amountRaw: AmountString; + // Total amount received for this wtid (without fees) + amountEffective: AmountString; + exchangePub: string; + }; + }; } /** |