gnunet-svn
[Top][All Lists]
Advanced

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

[taler-docs] branch master updated: document wallet dumpCoins API


From: gnunet
Subject: [taler-docs] branch master updated: document wallet dumpCoins API
Date: Thu, 03 Sep 2020 19:53:46 +0200

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

dold pushed a commit to branch master
in repository docs.

The following commit(s) were added to refs/heads/master by this push:
     new 81b4ec7  document wallet dumpCoins API
81b4ec7 is described below

commit 81b4ec7f342e77a3306024d50f5ceee5ee89c50b
Author: Florian Dold <florian.dold@gmail.com>
AuthorDate: Thu Sep 3 23:23:27 2020 +0530

    document wallet dumpCoins API
---
 taler-wallet.rst | 57 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 57 insertions(+)

diff --git a/taler-wallet.rst b/taler-wallet.rst
index 7f0f7db..7c77e6e 100644
--- a/taler-wallet.rst
+++ b/taler-wallet.rst
@@ -895,6 +895,63 @@ Make a test payment
       summary: string;
     }
 
+
+Dump all coins to JSON
+~~~~~~~~~~~~~~~~~~~~~~
+
+:Name: ``"dumpCoins"``
+:Description:
+  Make a test payment with existing funds.
+:Request:
+  The request object is ignored.
+:Response:
+  .. code:: ts
+
+    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;
+      }>;
+    }
+
 Global Errors
 -------------
 

-- 
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]