gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[taler-wallet-core] branch master updated: -dce


From: gnunet
Subject: [taler-wallet-core] branch master updated: -dce
Date: Thu, 03 Nov 2022 10:35:41 +0100

This is an automated email from the git hooks/post-receive script.

dold pushed a commit to branch master
in repository wallet-core.

The following commit(s) were added to refs/heads/master by this push:
     new 54847cdad -dce
54847cdad is described below

commit 54847cdadbc055c56df50e4ccfe37bf57d46ac41
Author: Florian Dold <florian@dold.me>
AuthorDate: Thu Nov 3 10:35:38 2022 +0100

    -dce
---
 packages/taler-util/src/wallet-types.ts | 71 ---------------------------------
 1 file changed, 71 deletions(-)

diff --git a/packages/taler-util/src/wallet-types.ts 
b/packages/taler-util/src/wallet-types.ts
index fd41487fd..3a366d4e1 100644
--- a/packages/taler-util/src/wallet-types.ts
+++ b/packages/taler-util/src/wallet-types.ts
@@ -283,56 +283,6 @@ export interface SenderWireInfos {
   senderWires: string[];
 }
 
-/**
- * Request to create a reserve.
- */
-export interface CreateReserveRequest {
-  /**
-   * The initial amount for the reserve.
-   */
-  amount: AmountJson;
-
-  /**
-   * Exchange URL where the bank should create the reserve.
-   */
-  exchange: string;
-
-  /**
-   * Payto URI that identifies the exchange's account that the funds
-   * for this reserve go into.
-   */
-  exchangePaytoUri?: string;
-
-  /**
-   * Wire details (as a payto URI) for the bank account that sent the funds to
-   * the exchange.
-   */
-  senderWire?: string;
-
-  /**
-   * URL to fetch the withdraw status from the bank.
-   */
-  bankWithdrawStatusUrl?: string;
-
-  /**
-   * Forced denomination selection for the first withdrawal
-   * from this reserve, only used for testing.
-   */
-  forcedDenomSel?: ForcedDenomSel;
-
-  restrictAge?: number;
-}
-
-export const codecForCreateReserveRequest = (): Codec<CreateReserveRequest> =>
-  buildCodecForObject<CreateReserveRequest>()
-    .property("amount", codecForAmountJson())
-    .property("exchange", codecForString())
-    .property("exchangePaytoUri", codecForString())
-    .property("senderWire", codecOptional(codecForString()))
-    .property("bankWithdrawStatusUrl", codecOptional(codecForString()))
-    .property("forcedDenomSel", codecForAny())
-    .build("CreateReserveRequest");
-
 /**
  * Request to mark a reserve as confirmed.
  */
@@ -349,27 +299,6 @@ export const codecForConfirmReserveRequest = (): 
Codec<ConfirmReserveRequest> =>
     .property("reservePub", codecForString())
     .build("ConfirmReserveRequest");
 
-/**
- * Wire coins to the user's own bank account.
- */
-export interface ReturnCoinsRequest {
-  /**
-   * The amount to wire.
-   */
-  amount: AmountJson;
-
-  /**
-   * The exchange to take the coins from.
-   */
-  exchange: string;
-
-  /**
-   * Wire details for the bank account of the customer that will
-   * receive the funds.
-   */
-  senderWire?: string;
-}
-
 export interface PrepareRefundResult {
   proposalId: string;
 

-- 
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]