diff options
author | Sebastian <sebasjm@gmail.com> | 2021-09-08 15:30:32 -0300 |
---|---|---|
committer | Sebastian <sebasjm@gmail.com> | 2021-09-08 15:35:44 -0300 |
commit | 217f34397f95fc988280eee9c376efe0781c69ea (patch) | |
tree | 8cfb4011a7ddcb7409b7617ec8ac1425d08b1512 /packages/taler-util | |
parent | a72ec5971e7c65e13a22627fc52983b75d4bea71 (diff) |
first approach to new design for withdraw
Diffstat (limited to 'packages/taler-util')
-rw-r--r-- | packages/taler-util/src/walletTypes.ts | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/packages/taler-util/src/walletTypes.ts b/packages/taler-util/src/walletTypes.ts index 6e71de6ee..7ec182fa2 100644 --- a/packages/taler-util/src/walletTypes.ts +++ b/packages/taler-util/src/walletTypes.ts @@ -713,6 +713,17 @@ export const codecForGetWithdrawalDetailsForUri = (): Codec<GetWithdrawalDetails .property("talerWithdrawUri", codecForString()) .build("GetWithdrawalDetailsForUriRequest"); +export interface GetExchangeWithdrawalInfo { + exchangeBaseUrl: string; + amount: AmountJson; +} + +export const codecForGetExchangeWithdrawalInfo = (): Codec<GetExchangeWithdrawalInfo> => + buildCodecForObject<GetExchangeWithdrawalInfo>() + .property("exchangeBaseUrl", codecForString()) + .property("amount", codecForAmountJson()) + .build("GetExchangeWithdrawalInfo"); + export interface AbortProposalRequest { proposalId: string; } @@ -791,7 +802,7 @@ export interface MakeSyncSignatureRequest { /** * Planchet for a coin during refresh. */ - export interface RefreshPlanchetInfo { +export interface RefreshPlanchetInfo { /** * Public key for the coin. */ |