RPC developer docs for HUSH full node
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1213 lines
41 KiB

<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=1200px, shrink-to-fit=yes">
<meta name="description" content="Hush 3.7.0 RPC Docs - z_mergetoaddress">
<meta name="author" content="">
<title>z_mergetoaddress - Hush 3.7.0 RPC Docs</title>
<link href="./bootstrap.min.css" rel="stylesheet">
</head>
<style>
.card-body {
font-size:80%;
padding-top: 0.5em;
}
pre {
word-break: break-word;
white-space: pre-wrap;
}
</style>
<body>
<nav class="navbar navbar-dark bg-dark ">
<a class="navbar-brand" href="/">Hush 3.7.0 RPC docs</a>
</nav>
<main role="main" class="container-fluid" style="margin-top: 1pc;">
<div class="row">
<div class="col-8 col-lg-9 col-xl-10">
<h1>z_mergetoaddress - Hush 3.7.0 RPC</h1>
<pre>z_mergetoaddress [&#34;fromaddress&#34;, ... ] &#34;toaddress&#34; ( fee ) ( transparent_limit ) ( shielded_limit ) ( memo )
Merge multiple UTXOs and notes into a single UTXO or note. Coinbase UTXOs are ignored; use `z_shieldcoinbase`
to combine those into a single note.
This is an asynchronous operation, and UTXOs selected for merging will be locked. If there is an error, they
are unlocked. The RPC call `listlockunspent` can be used to return a list of locked UTXOs.
The number of UTXOs and notes selected for merging can be limited by the caller. If the transparent limit
parameter is set to zero, and Overwinter is not yet active, the -mempooltxinputlimit option will determine the
number of UTXOs. Any limit is constrained by the consensus rule defining a maximum transaction size of
Arguments:
1. fromaddresses (string, required) A JSON array with addresses.
The following special strings are accepted inside the array:
- &#34;*&#34;: Merge both UTXOs and notes from all addresses belonging to the wallet.
- &#34;ANY_TADDR&#34;: Merge UTXOs from all t-addrs belonging to the wallet.
- &#34;ANY_ZADDR&#34;: Merge notes from all z-addrs belonging to the wallet.
If a special string is given, any given addresses of that type will be ignored.
[
&#34;address&#34; (string) Can be a t-addr or a z-addr
,...
]
2. &#34;toaddress&#34; (string, required) The t-addr or z-addr to send the funds to.
3. fee (numeric, optional, default=0.0001) The fee amount to attach to this transaction.
4. transparent_limit (numeric, optional, default=50) Limit on the maximum number of UTXOs to merge. Set to 0 to use node option -mempooltxinputlimit (before Overwinter), or as many as will fit in the transaction (after Overwinter).
4. shielded_limit (numeric, optional, default=90 Sapling Notes) Limit on the maximum number of notes to merge. Set to 0 to merge as many as will fit in the transaction.
5. maximum_utxo_size (numeric, optional) eg, 0.0001 anything under 10000 satoshies will be merged, ignores 10,000 sat p2pk utxo that dragon uses, and merges coinbase utxo.
6. &#34;memo&#34; (string, optional) Encoded as hex. When toaddress is a z-addr, this will be stored in the memo field of the new note.
Result:
{
&#34;remainingUTXOs&#34;: xxx (numeric) Number of UTXOs still available for merging.
&#34;remainingTransparentValue&#34;: xxx (numeric) Value of UTXOs still available for merging.
&#34;remainingNotes&#34;: xxx (numeric) Number of notes still available for merging.
&#34;remainingShieldedValue&#34;: xxx (numeric) Value of notes still available for merging.
&#34;mergingUTXOs&#34;: xxx (numeric) Number of UTXOs being merged.
&#34;mergingTransparentValue&#34;: xxx (numeric) Value of UTXOs being merged.
&#34;mergingNotes&#34;: xxx (numeric) Number of notes being merged.
&#34;mergingShieldedValue&#34;: xxx (numeric) Value of notes being merged.
&#34;opid&#34;: xxx (string) An operationid to pass to z_getoperationstatus to get the result of the operation.
}
Examples:
&gt; hush-cli z_mergetoaddress &#39;[&#34;RD6GgnrMpPaTSMn8vai6yiGA7mN4QGPV&#34;]&#39; zs1aW34Gj9FrnGUEf833ywDVL62NWXBM81u6EQnM6VR45eYnXhwztecW1SjxA7JrmAXKJhxhj3vDNEpVCQoSvVoSpmbhtjf
&gt; curl --user myusername --data-binary &#39;{&#34;jsonrpc&#34;: &#34;1.0&#34;, &#34;id&#34;:&#34;curltest&#34;, &#34;method&#34;: &#34;z_mergetoaddress&#34;, &#34;params&#34;: [[&#34;RD6GgnrMpPaTSMn8vai6yiGA7mN4QGPV&#34;], &#34;zs1aW34Gj9FrnGUEf833ywDVL62NWXBM81u6EQnM6VR45eYnXhwztecW1SjxA7JrmAXKJhxhj3vDNEpVCQoSvVoSpmbhtjf&#34;] }&#39; -H &#39;content-type: text/plain;&#39; http://127.0.0.1:18031/
</pre>
<hr>
<p>
Maintained by <a href="https://git.hush.is">The Hush Developers</a>
</p>
<p>
Welcome to the Hush full node RPC developer documentation!!! You finally made it.
</p>
</div>
<div class="col-4 col-lg-3 col-xl-2">
<div class="card">
<div class="card-header">
CClib
</div>
<div class="card-body">
<a href="cclib.html">cclib</a>
<br>
<a href="cclibaddress.html">cclibaddress</a>
<br>
<a href="cclibinfo.html">cclibinfo</a>
<br>
</div>
</div>
<br>
<div class="card">
<div class="card-header">
FSM
</div>
<div class="card-body">
<a href="FSMaddress.html">FSMaddress</a>
<br>
<a href="FSMcreate.html">FSMcreate</a>
<br>
<a href="FSMinfo.html">FSMinfo</a>
<br>
<a href="FSMlist.html">FSMlist</a>
<br>
</div>
</div>
<br>
<div class="card">
<div class="card-header">
Addressindex
</div>
<div class="card-body">
<a href="checknotarization.html">checknotarization</a>
<br>
<a href="getaddressbalance.html">getaddressbalance</a>
<br>
<a href="getaddressdeltas.html">getaddressdeltas</a>
<br>
<a href="getaddressmempool.html">getaddressmempool</a>
<br>
<a href="getaddresstxids.html">getaddresstxids</a>
<br>
<a href="getaddressutxos.html">getaddressutxos</a>
<br>
<a href="getnotarypayinfo.html">getnotarypayinfo</a>
<br>
<a href="getsnapshot.html">getsnapshot</a>
<br>
</div>
</div>
<br>
<div class="card">
<div class="card-header">
Auction
</div>
<div class="card-body">
<a href="auctionaddress.html">auctionaddress</a>
<br>
</div>
</div>
<br>
<div class="card">
<div class="card-header">
Blockchain
</div>
<div class="card-body">
<a href="coinsupply.html">coinsupply</a>
<br>
<a href="getbestblockhash.html">getbestblockhash</a>
<br>
<a href="getblock.html">getblock</a>
<br>
<a href="getblockchaininfo.html">getblockchaininfo</a>
<br>
<a href="getblockcount.html">getblockcount</a>
<br>
<a href="getblockhash.html">getblockhash</a>
<br>
<a href="getblockhashes.html">getblockhashes</a>
<br>
<a href="getblockheader.html">getblockheader</a>
<br>
<a href="getchaintips.html">getchaintips</a>
<br>
<a href="getchaintxstats.html">getchaintxstats</a>
<br>
<a href="getdifficulty.html">getdifficulty</a>
<br>
<a href="getmempoolinfo.html">getmempoolinfo</a>
<br>
<a href="getrawmempool.html">getrawmempool</a>
<br>
<a href="getspentinfo.html">getspentinfo</a>
<br>
<a href="gettxout.html">gettxout</a>
<br>
<a href="gettxoutproof.html">gettxoutproof</a>
<br>
<a href="gettxoutsetinfo.html">gettxoutsetinfo</a>
<br>
<a href="kvsearch.html">kvsearch</a>
<br>
<a href="kvupdate.html">kvupdate</a>
<br>
<a href="minerids.html">minerids</a>
<br>
<a href="notaries.html">notaries</a>
<br>
<a href="verifychain.html">verifychain</a>
<br>
<a href="verifytxoutproof.html">verifytxoutproof</a>
<br>
</div>
</div>
<br>
<div class="card">
<div class="card-header">
Channels
</div>
<div class="card-body">
<a href="channelsaddress.html">channelsaddress</a>
<br>
<a href="channelsclose.html">channelsclose</a>
<br>
<a href="channelsinfo.html">channelsinfo</a>
<br>
<a href="channelslist.html">channelslist</a>
<br>
<a href="channelsopen.html">channelsopen</a>
<br>
<a href="channelspayment.html">channelspayment</a>
<br>
<a href="channelsrefund.html">channelsrefund</a>
<br>
</div>
</div>
<br>
<div class="card">
<div class="card-header">
Control
</div>
<div class="card-body">
<a href="getdragonjson.html">getdragonjson</a>
<br>
<a href="geterablockheights.html">geterablockheights</a>
<br>
<a href="getinfo.html">getinfo</a>
<br>
<a href="getnotarysendmany.html">getnotarysendmany</a>
<br>
<a href="help.html">help</a>
<br>
<a href="stop.html">stop</a>
<br>
</div>
</div>
<br>
<div class="card">
<div class="card-header">
Crosschain
</div>
<div class="card-body">
<a href="MoMoMdata.html">MoMoMdata</a>
<br>
<a href="assetchainproof.html">assetchainproof</a>
<br>
<a href="calc_MoM.html">calc_MoM</a>
<br>
<a href="getNotarizationsForBlock.html">getNotarizationsForBlock</a>
<br>
<a href="getimports.html">getimports</a>
<br>
<a href="getwalletburntransactions.html">getwalletburntransactions</a>
<br>
<a href="height_MoM.html">height_MoM</a>
<br>
<a href="importdual.html">importdual</a>
<br>
<a href="importgatewaybind.html">importgatewaybind</a>
<br>
<a href="importgatewaycompletesigning.html">importgatewaycompletesigning</a>
<br>
<a href="importgatewayddress.html">importgatewayddress</a>
<br>
<a href="importgatewaydeposit.html">importgatewaydeposit</a>
<br>
<a href="importgatewaybind.html">importgatewaybind</a>
<br>
<a href="importgatewaymarkdone.html">importgatewaymarkdone</a>
<br>
<a href="importgatewayspartialsign.html">importgatewayspartialsign</a>
<br>
<a href="importgatewaypendingwithdraws.html">importgatewaypendingwithdraws</a>
<br>
<a href="importgatewayprocessed.html">importgatewayprocessed</a>
<br>
<a href="importgatewaywithdraw.html">importgatewaywithdraw</a>
<br>
<a href="migrate_checkburntransactionsource.html">migrate_checkburntransactionsource</a>
<br>
<a href="migrate_completeimporttransaction.html">migrate_completeimporttransaction</a>
<br>
<a href="migrate_converttoexport.html">migrate_converttoexport</a>
<br>
<a href="migrate_createburntransaction.html">migrate_createburntransaction</a>
<br>
<a href="migrate_createimporttransaction.html">migrate_createimporttransaction</a>
<br>
<a href="migrate_createnotaryapprovaltransaction.html">migrate_createnotaryapprovaltransaction</a>
<br>
<a href="scanNotarizationsDB.html">scanNotarizationsDB</a>
<br>
<a href="selfimport.html">selfimport</a>
<br>
</div>
</div>
<br>
<div class="card">
<div class="card-header">
Dice
</div>
<div class="card-body">
<a href="diceaddfunds.html">diceaddfunds</a>
<br>
<a href="diceaddress.html">diceaddress</a>
<br>
<a href="dicebet.html">dicebet</a>
<br>
<a href="dicefinish.html">dicefinish</a>
<br>
<a href="dicefund.html">dicefund</a>
<br>
<a href="diceinfo.html">diceinfo</a>
<br>
<a href="dicelist.html">dicelist</a>
<br>
<a href="dicestatus.html">dicestatus</a>
<br>
</div>
</div>
<br>
<div class="card">
<div class="card-header">
Faucet
</div>
<div class="card-body">
<a href="faucetaddress.html">faucetaddress</a>
<br>
<a href="faucetfund.html">faucetfund</a>
<br>
<a href="faucetget.html">faucetget</a>
<br>
<a href="faucetinfo.html">faucetinfo</a>
<br>
</div>
</div>
<br>
<div class="card">
<div class="card-header">
Gateways
</div>
<div class="card-body">
<a href="gatewaysaddress.html">gatewaysaddress</a>
<br>
<a href="gatewaysbind.html">gatewaysbind</a>
<br>
<a href="gatewaysclaim.html">gatewaysclaim</a>
<br>
<a href="gatewayscompletesigning.html">gatewayscompletesigning</a>
<br>
<a href="gatewaysdeposit.html">gatewaysdeposit</a>
<br>
<a href="gatewaysdumpprivkey.html">gatewaysdumpprivkey</a>
<br>
<a href="gatewaysexternaladdress.html">gatewaysexternaladdress</a>
<br>
<a href="gatewaysinfo.html">gatewaysinfo</a>
<br>
<a href="gatewayslist.html">gatewayslist</a>
<br>
<a href="gatewaysmarkdone.html">gatewaysmarkdone</a>
<br>
<a href="gatewayspartialsign.html">gatewayspartialsign</a>
<br>
<a href="gatewayspendingdeposits.html">gatewayspendingdeposits</a>
<br>
<a href="gatewayspendingwithdraws.html">gatewayspendingwithdraws</a>
<br>
<a href="gatewaysprocessed.html">gatewaysprocessed</a>
<br>
<a href="gatewayswithdraw.html">gatewayswithdraw</a>
<br>
</div>
</div>
<br>
<div class="card">
<div class="card-header">
Generating
</div>
<div class="card-body">
<a href="generate.html">generate</a>
<br>
<a href="getgenerate.html">getgenerate</a>
<br>
<a href="setgenerate.html">setgenerate</a>
<br>
</div>
</div>
<br>
<div class="card">
<div class="card-header">
Heir
</div>
<div class="card-body">
<a href="heiradd.html">heiradd</a>
<br>
<a href="heiraddress.html">heiraddress</a>
<br>
<a href="heirclaim.html">heirclaim</a>
<br>
<a href="heirfund.html">heirfund</a>
<br>
<a href="heirinfo.html">heirinfo</a>
<br>
<a href="heirlist.html">heirlist</a>
<br>
</div>
</div>
<br>
<div class="card">
<div class="card-header">
Lotto
</div>
<div class="card-body">
<a href="lottoaddress.html">lottoaddress</a>
<br>
</div>
</div>
<br>
<div class="card">
<div class="card-header">
Mining
</div>
<div class="card-body">
<a href="genminingCSV.html">genminingCSV</a>
<br>
<a href="getblocksubsidy.html">getblocksubsidy</a>
<br>
<a href="getblocktemplate.html">getblocktemplate</a>
<br>
<a href="getlocalsolps.html">getlocalsolps</a>
<br>
<a href="getmininginfo.html">getmininginfo</a>
<br>
<a href="getnetworkhashps.html">getnetworkhashps</a>
<br>
<a href="getnetworksolps.html">getnetworksolps</a>
<br>
<a href="prioritisetransaction.html">prioritisetransaction</a>
<br>
<a href="submitblock.html">submitblock</a>
<br>
</div>
</div>
<br>
<div class="card">
<div class="card-header">
NSPV
</div>
<div class="card-body">
<a href="nspv_broadcast.html">nspv_broadcast</a>
<br>
<a href="nspv_getinfo.html">nspv_getinfo</a>
<br>
<a href="nspv_hdrsproof.html">nspv_hdrsproof</a>
<br>
<a href="nspv_listccmoduleunspent.html">nspv_listccmoduleunspent</a>
<br>
<a href="nspv_listtransactions.html">nspv_listtransactions</a>
<br>
<a href="nspv_listunspent.html">nspv_listunspent</a>
<br>
<a href="nspv_login.html">nspv_login</a>
<br>
<a href="nspv_logout.html">nspv_logout</a>
<br>
<a href="nspv_mempool.html">nspv_mempool</a>
<br>
<a href="nspv_notarizations.html">nspv_notarizations</a>
<br>
<a href="nspv_spend.html">nspv_spend</a>
<br>
<a href="nspv_spentinfo.html">nspv_spentinfo</a>
<br>
<a href="nspv_txproof.html">nspv_txproof</a>
<br>
</div>
</div>
<br>
<div class="card">
<div class="card-header">
Network
</div>
<div class="card-body">
<a href="addnode.html">addnode</a>
<br>
<a href="clearbanned.html">clearbanned</a>
<br>
<a href="disconnectnode.html">disconnectnode</a>
<br>
<a href="getaddednodeinfo.html">getaddednodeinfo</a>
<br>
<a href="getconnectioncount.html">getconnectioncount</a>
<br>
<a href="getdeprecationinfo.html">getdeprecationinfo</a>
<br>
<a href="getnettotals.html">getnettotals</a>
<br>
<a href="getnetworkinfo.html">getnetworkinfo</a>
<br>
<a href="getpeerinfo.html">getpeerinfo</a>
<br>
<a href="listbanned.html">listbanned</a>
<br>
<a href="ping.html">ping</a>
<br>
<a href="setban.html">setban</a>
<br>
</div>
</div>
<br>
<div class="card">
<div class="card-header">
Oracles
</div>
<div class="card-body">
<a href="oraclesaddress.html">oraclesaddress</a>
<br>
<a href="oraclescreate.html">oraclescreate</a>
<br>
<a href="oraclesdata.html">oraclesdata</a>
<br>
<a href="oraclesfund.html">oraclesfund</a>
<br>
<a href="oraclesinfo.html">oraclesinfo</a>
<br>
<a href="oracleslist.html">oracleslist</a>
<br>
<a href="oraclesregister.html">oraclesregister</a>
<br>
<a href="oraclessample.html">oraclessample</a>
<br>
<a href="oraclessamples.html">oraclessamples</a>
<br>
<a href="oraclessubscribe.html">oraclessubscribe</a>
<br>
</div>
</div>
<br>
<div class="card">
<div class="card-header">
Payments
</div>
<div class="card-body">
<a href="paymentsaddress.html">paymentsaddress</a>
<br>
<a href="paymentsairdrop.html">paymentsairdrop</a>
<br>
<a href="payments_airdroptokens.html">payments_airdroptokens</a>
<br>
<a href="paymentscreate.html">paymentscreate</a>
<br>
<a href="paymentsfund.html">paymentsfund</a>
<br>
<a href="paymentsinfo.html">paymentsinfo</a>
<br>
<a href="paymentslist.html">paymentslist</a>
<br>
<a href="paymentsmerge.html">paymentsmerge</a>
<br>
<a href="paymentsrelease.html">paymentsrelease</a>
<br>
<a href="paymentstxidopret.html">paymentstxidopret</a>
<br>
</div>
</div>
<br>
<div class="card">
<div class="card-header">
Pegs
</div>
<div class="card-body">
<a href="pegsaccounthistory.html">pegsaccounthistory</a>
<br>
<a href="pegsaccountinfo.html">pegsaccountinfo</a>
<br>
<a href="pegssaddress.html">pegssaddress</a>
<br>
<a href="pegscreate.html">pegscreate</a>
<br>
<a href="pegsexchange.html">pegsexchange</a>
<br>
<a href="pegsfund.html">pegsfund</a>
<br>
<a href="pegsget.html">pegsget</a>
<br>
<a href="pegsinfo.html">pegsinfo</a>
<br>
<a href="pegsliquidate.html">pegsliquidate</a>
<br>
<a href="pegsredeem.html">pegsredeem</a>
<br>
<a href="pegsworstaccounts.html">pegsworstaccounts</a>
<br>
</div>
</div>
<br>
<div class="card">
<div class="card-header">
Rawtransactions
</div>
<div class="card-body">
<a href="createrawtransaction.html">createrawtransaction</a>
<br>
<a href="decoderawtransaction.html">decoderawtransaction</a>
<br>
<a href="decodescript.html">decodescript</a>
<br>
<a href="fundrawtransaction.html">fundrawtransaction</a>
<br>
<a href="getrawtransaction.html">getrawtransaction</a>
<br>
<a href="sendrawtransaction.html">sendrawtransaction</a>
<br>
<a href="signrawtransaction.html">signrawtransaction</a>
<br>
</div>
</div>
<br>
<div class="card">
<div class="card-header">
Rewards
</div>
<div class="card-body">
<a href="rewardsaddfunding.html">rewardsaddfunding</a>
<br>
<a href="rewardsaddress.html">rewardsaddress</a>
<br>
<a href="rewardscreatefunding.html">rewardscreatefunding</a>
<br>
<a href="rewardsinfo.html">rewardsinfo</a>
<br>
<a href="rewardslist.html">rewardslist</a>
<br>
<a href="rewardslock.html">rewardslock</a>
<br>
<a href="rewardsunlock.html">rewardsunlock</a>
<br>
</div>
</div>
<br>
<div class="card">
<div class="card-header">
Tokens
</div>
<div class="card-body">
<a href="assetsaddress.html">assetsaddress</a>
<br>
<a href="mytokenorders.html">mytokenorders</a>
<br>
<a href="tokenaddress.html">tokenaddress</a>
<br>
<a href="tokenask.html">tokenask</a>
<br>
<a href="tokenbalance.html">tokenbalance</a>
<br>
<a href="tokenbid.html">tokenbid</a>
<br>
<a href="tokencancelask.html">tokencancelask</a>
<br>
<a href="tokencancelbid.html">tokencancelbid</a>
<br>
<a href="tokenconvert.html">tokenconvert</a>
<br>
<a href="tokencreate.html">tokencreate</a>
<br>
<a href="tokenfillask.html">tokenfillask</a>
<br>
<a href="tokenfillbid.html">tokenfillbid</a>
<br>
<a href="tokeninfo.html">tokeninfo</a>
<br>
<a href="tokenlist.html">tokenlist</a>
<br>
<a href="tokenorders.html">tokenorders</a>
<br>
<a href="tokentransfer.html">tokentransfer</a>
<br>
</div>
</div>
<br>
<div class="card">
<div class="card-header">
Util
</div>
<div class="card-body">
<a href="createmultisig.html">createmultisig</a>
<br>
<a href="decodeccopret.html">decodeccopret</a>
<br>
<a href="estimatefee.html">estimatefee</a>
<br>
<a href="estimatepriority.html">estimatepriority</a>
<br>
<a href="invalidateblock.html">invalidateblock</a>
<br>
<a href="reconsiderblock.html">reconsiderblock</a>
<br>
<a href="setmocktime.html">setmocktime</a>
<br>
<a href="txnotarizedconfirmed.html">txnotarizedconfirmed</a>
<br>
<a href="validateaddress.html">validateaddress</a>
<br>
<a href="verifymessage.html">verifymessage</a>
<br>
<a href="z_validateaddress.html">z_validateaddress</a>
<br>
</div>
</div>
<br>
<div class="card">
<div class="card-header">
Wallet
</div>
<div class="card-body">
<a href="addmultisigaddress.html">addmultisigaddress</a>
<br>
<a href="backupwallet.html">backupwallet</a>
<br>
<a href="cleanwallettransactions.html">cleanwallettransactions</a>
<br>
<a href="convertpassphrase.html">convertpassphrase</a>
<br>
<a href="dumpprivkey.html">dumpprivkey</a>
<br>
<a href="dumpwallet.html">dumpwallet</a>
<br>
<a href="encryptwallet.html">encryptwallet</a>
<br>
<a href="getaccount.html">getaccount</a>
<br>
<a href="getaccountaddress.html">getaccountaddress</a>
<br>
<a href="getaddressesbyaccount.html">getaddressesbyaccount</a>
<br>
<a href="getalldata.html">getalldata</a>
<br>
<a href="getbalance.html">getbalance</a>
<br>
<a href="getnewaddress.html">getnewaddress</a>
<br>
<a href="getrawchangeaddress.html">getrawchangeaddress</a>
<br>
<a href="getreceivedbyaccount.html">getreceivedbyaccount</a>
<br>
<a href="getreceivedbyaddress.html">getreceivedbyaddress</a>
<br>
<a href="gettransaction.html">gettransaction</a>
<br>
<a href="getunconfirmedbalance.html">getunconfirmedbalance</a>
<br>
<a href="getwalletinfo.html">getwalletinfo</a>
<br>
<a href="importaddress.html">importaddress</a>
<br>
<a href="importprivkey.html">importprivkey</a>
<br>
<a href="importwallet.html">importwallet</a>
<br>
<a href="keypoolrefill.html">keypoolrefill</a>
<br>
<a href="listaccounts.html">listaccounts</a>
<br>
<a href="listaddressgroupings.html">listaddressgroupings</a>
<br>
<a href="listlockunspent.html">listlockunspent</a>
<br>
<a href="listreceivedbyaccount.html">listreceivedbyaccount</a>
<br>
<a href="listreceivedbyaddress.html">listreceivedbyaddress</a>
<br>
<a href="listsinceblock.html">listsinceblock</a>
<br>
<a href="listtransactions.html">listtransactions</a>
<br>
<a href="listunspent.html">listunspent</a>
<br>
<a href="lockunspent.html">lockunspent</a>
<br>
<a href="move.html">move</a>
<br>
<a href="opreturn_burn.html">opreturn_burn</a>
<br>
<a href="rescan.html">rescan</a>
<br>
<a href="resendwallettransactions.html">resendwallettransactions</a>
<br>
<a href="sendfrom.html">sendfrom</a>
<br>
<a href="sendmany.html">sendmany</a>
<br>
<a href="sendtoaddress.html">sendtoaddress</a>
<br>
<a href="setaccount.html">setaccount</a>
<br>
<a href="setpubkey.html">setpubkey</a>
<br>
<a href="settxfee.html">settxfee</a>
<br>
<a href="signmessage.html">signmessage</a>
<br>
<a href="z_exportkey.html">z_exportkey</a>
<br>
<a href="z_exportviewingkey.html">z_exportviewingkey</a>
<br>
<a href="z_exportwallet.html">z_exportwallet</a>
<br>
<a href="z_getbalance.html">z_getbalance</a>
<br>
<a href="z_getinfo.html">z_getinfo</a>
<br>
<a href="z_getnewaddress.html">z_getnewaddress</a>
<br>
<a href="z_getnotescount.html">z_getnotescount</a>
<br>
<a href="z_getoperationresult.html">z_getoperationresult</a>
<br>
<a href="z_getoperationstatus.html">z_getoperationstatus</a>
<br>
<a href="z_gettotalbalance.html">z_gettotalbalance</a>
<br>
<a href="z_importkey.html">z_importkey</a>
<br>
<a href="z_importviewingkey.html">z_importviewingkey</a>
<br>
<a href="z_importwallet.html">z_importwallet</a>
<br>
<a href="z_listaddresses.html">z_listaddresses</a>
<br>
<a href="z_listnullifiers.html">z_listnullifiers</a>
<br>
<a href="z_listoperationids.html">z_listoperationids</a>
<br>
<a href="z_listreceivedaddress.html">z_listreceivedaddress</a>
<br>
<a href="z_listreceivedbyaddress.html">z_listreceivedbyaddress</a>
<br>
<a href="z_listsentbyaddress.html">z_listsentbyaddress</a>
<br>
<a href="z_listunspent.html">z_listunspent</a>
<br>
<a href="z_mergetoaddress.html">z_mergetoaddress</a>
<br>
<a href="z_sendmany.html">z_sendmany</a>
<br>
<a href="z_shieldcoinbase.html">z_shieldcoinbase</a>
<br>
<a href="z_viewtransaction.html">z_viewtransaction</a>
<br>
</div>
</div>
<br>
</div>
</div>
</main>
</body>
</html>