gnunet-svn
[Top][All Lists]
Advanced

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

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


From: gnunet
Subject: [taler-wallet-core] branch master updated: docs
Date: Tue, 24 Mar 2020 13:27:50 +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 1bac5329 docs
1bac5329 is described below

commit 1bac5329b510e74d644d0edbf6118b527b10c8ad
Author: Florian Dold <address@hidden>
AuthorDate: Tue Mar 24 17:57:44 2020 +0530

    docs
---
 src/types/talerTypes.ts | 35 +++++++++++++++++++++++++++++++++++
 1 file changed, 35 insertions(+)

diff --git a/src/types/talerTypes.ts b/src/types/talerTypes.ts
index 90751940..0f35f7ed 100644
--- a/src/types/talerTypes.ts
+++ b/src/types/talerTypes.ts
@@ -731,16 +731,51 @@ export class WithdrawResponse {
   ev_sig: string;
 }
 
+/**
+ * Easy to process format for the public data of coins
+ * managed by the wallet.
+ */
 export interface CoinDumpJson {
   coins: Array<{
+    /**
+     * The coin's denomination's public key.
+     */
     denom_pub: string;
+    /**
+     * Hash of denom_pub.
+     */
     denom_pub_hash: string;
+    /**
+     * Value of the denomination (without any fees).
+     */
     denom_value: string;
+    /**
+     * Public key of the coin.
+     */
     coin_pub: string;
+    /**
+     * Base URL of the exchange for the coin.
+     */
     exchange_base_url: string;
+    /**
+     * Remaining value on the coin, to the knowledge of
+     * the wallet.
+     */
     remaining_value: string;
+    /**
+     * Public key of the parent coin.
+     * Only present if this coin was obtained via refreshing.
+     */
     refresh_parent_coin_pub: string | undefined;
+    /**
+     * Public key of the reserve for this coin.
+     * Only present if this coin was obtained via refreshing.
+     */
     withdrawal_reserve_pub: string | undefined;
+    /**
+     * Is the coin suspended?
+     * Suspended coins are not considered for payments.
+     */
     coin_suspended: boolean;
   }>;
 }

-- 
To stop receiving notification emails like this one, please contact
address@hidden.



reply via email to

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