diff --git a/addmultisigaddress.html b/addmultisigaddress.html index dd2e510..d4020da 100644 --- a/addmultisigaddress.html +++ b/addmultisigaddress.html @@ -3,9 +3,9 @@ - + - addmultisigaddress - Zcash 5.5.0 RPC Docs + addmultisigaddress - Zcash 5.9.1 RPC Docs + + + + + + +
+ +
+
+

z_converttex - Zcash 5.9.1 RPC

+ +
z_converttex ( "transparentaddress" )
+
+Converts a transparent Zcash address to a TEX address.
+
+Arguments:
+1. "transparentaddress" (string, required) 
+
+Result:
+"texaddress"    (string) The converted ZIP 320 (TEX) address
+
+Examples:
+> zcash-cli z_converttex "t1M72Sfpbz1BPpXFHz9m3CdqATR44Jvaydd"
+
+
+
+ +

+ Maintained by @_garethtdavies; modified by: mdr0id;license of the docs is MIT (see zcash repo), license of the scripts and webpage is also MIT (github repo) +

+

+ Note it uses a mainnet zcash node +

+
+
+ +
+
+ Addressindex +
+ +
+
+ + +
+ +
+
+ Control +
+
+ + getexperimentalfeatures +
+ + getinfo +
+ + getmemoryinfo +
+ + help +
+ + setlogfilter +
+ + stop +
+ +
+
+
+ +
+
+ Disclosure +
+ +
+
+ +
+
+ Generating +
+
+ + generate +
+ + getgenerate +
+ + setgenerate +
+ +
+
+
+ + +
+ +
+
+ Network +
+ +
+
+ + +
+ +
+
+ Util +
+ +
+
+ + +
+ +
+
+
+ + diff --git a/z_exportkey.html b/z_exportkey.html index 69b5a7e..a497dd8 100644 --- a/z_exportkey.html +++ b/z_exportkey.html @@ -3,9 +3,9 @@ - + - z_exportkey - Zcash 5.5.0 RPC Docs + z_exportkey - Zcash 5.9.1 RPC Docs + + + + + + +
+ +
+
+

z_getsubtreesbyindex - Zcash 5.9.1 RPC

+ +
z_getsubtreesbyindex "pool" start_index ( limit )
+Returns roots of subtrees of the given pool's note commitment tree. Each value returned
+in the `subtrees` field is the Merkle root of a subtree containing 2^16 leaves.
+
+Arguments:
+1. "pool"        (string, required) The pool from which subtrees should be returned. Either "sapling" or "orchard".
+2. start_index   (numeric, required) The index of the first 2^16-leaf subtree to return.
+2. limit         (numeric, optional) The maximum number of subtree values to return.
+
+Result:
+{
+  "pool" : "sapling|orchard", (string) The shielded pool to which the subtrees belong
+  "start_index": n,      (numeric) The index of the first subtree
+  "subtrees": [          (array) A sequential list of complete subtrees
+    {
+      "root": "hash",    (string) Merkle root of the 2^16-leaf subtree
+      "end_height": n,   (numeric) height of the block containing the note that completed this subtree
+    }, ...
+  ]
+}
+
+Examples:
+> zcash-cli z_getsubtreesbyindex "sapling", 0
+> curl --user myusername --data-binary '{"jsonrpc": "1.0", "id":"curltest", "method": "z_getsubtreesbyindex", "params": ["orchard", 3, 7] }' -H 'content-type: text/plain;' http://127.0.0.1:8232/
+
+
+
+ +

+ Maintained by @_garethtdavies; modified by: mdr0id;license of the docs is MIT (see zcash repo), license of the scripts and webpage is also MIT (github repo) +

+

+ Note it uses a mainnet zcash node +

+
+
+ +
+
+ Addressindex +
+ +
+
+ + +
+ +
+
+ Control +
+
+ + getexperimentalfeatures +
+ + getinfo +
+ + getmemoryinfo +
+ + help +
+ + setlogfilter +
+ + stop +
+ +
+
+
+ +
+
+ Disclosure +
+ +
+
+ +
+
+ Generating +
+
+ + generate +
+ + getgenerate +
+ + setgenerate +
+ +
+
+
+ + +
+ +
+
+ Network +
+ +
+
+ + +
+ +
+
+ Util +
+ +
+
+ + +
+ +
+
+
+ + diff --git a/z_gettotalbalance.html b/z_gettotalbalance.html index fe859ff..7af6ed0 100644 --- a/z_gettotalbalance.html +++ b/z_gettotalbalance.html @@ -3,9 +3,9 @@ - + - z_gettotalbalance - Zcash 5.5.0 RPC Docs + z_gettotalbalance - Zcash 5.9.1 RPC Docs