Hush Frequently Asked Questions
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.

1207 lines
40 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 - sendmany">
<meta name="author" content="">
<title>sendmany - 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>sendmany - Hush 3.7.0 RPC</h1>
<pre>sendmany &#34;fromaccount&#34; {&#34;address&#34;:amount,...} ( minconf &#34;comment&#34; [&#34;address&#34;,...] )
Send multiple times. Amounts are decimal numbers with at most 8 digits of precision.
Arguments:
1. &#34;fromaccount&#34; (string, required) MUST be set to the empty string &#34;&#34; to represent the default account. Passing any other string will result in an error.
2. &#34;amounts&#34; (string, required) A json object with addresses and amounts
{
&#34;address&#34;:amount (numeric) The HUSH3 address is the key, the numeric amount in HUSH3 is the value
,...
}
3. minconf (numeric, optional, default=1) Only use the balance confirmed at least this many times.
4. &#34;comment&#34; (string, optional) A comment
5. subtractfeefromamount (string, optional) A json array with addresses.
The fee will be equally deducted from the amount of each selected address.
Those recipients will receive less HUSH3 than you enter in their corresponding amount field.
If no addresses are specified here, the sender pays the fee.
[
&#34;address&#34; (string) Subtract fee from this address
,...
]
Result:
&#34;transactionid&#34; (string) The transaction id for the send. Only 1 transaction is created regardless of
the number of addresses.
Examples:
Send two amounts to two different addresses:
&gt; hush-cli sendmany &#34;&#34; &#34;{\&#34;RD6GgnrMpPaTSMn8vai6yiGA7mN4QGPVMY\&#34;:0.01,\&#34;RRyyejME7LRTuvdziWsXkAbSW1fdiohGwK\&#34;:0.02}&#34;
Send two amounts to two different addresses setting the confirmation and comment:
&gt; hush-cli sendmany &#34;&#34; &#34;{\&#34;RD6GgnrMpPaTSMn8vai6yiGA7mN4QGPVMY\&#34;:0.01,\&#34;RRyyejME7LRTuvdziWsXkAbSW1fdiohGwK\&#34;:0.02}&#34; 6 &#34;testing&#34;
Send two amounts to two different addresses, subtract fee from amount:
&gt; hush-cli sendmany &#34;&#34; &#34;{\&#34;RD6GgnrMpPaTSMn8vai6yiGA7mN4QGPVMY\&#34;:0.01,\&#34;RRyyejME7LRTuvdziWsXkAbSW1fdiohGwK\&#34;:0.02}&#34; 1 &#34;&#34; &#34;[\&#34;RD6GgnrMpPaTSMn8vai6yiGA7mN4QGPVMY\&#34;,\&#34;RRyyejME7LRTuvdziWsXkAbSW1fdiohGwK\&#34;]&#34;
As a json rpc call
&gt; curl --user myusername --data-binary &#39;{&#34;jsonrpc&#34;: &#34;1.0&#34;, &#34;id&#34;:&#34;curltest&#34;, &#34;method&#34;: &#34;sendmany&#34;, &#34;params&#34;: [&#34;&#34;, {&#34;RD6GgnrMpPaTSMn8vai6yiGA7mN4QGPVMY&#34;:0.01,&#34;RRyyejME7LRTuvdziWsXkAbSW1fdiohGwK&#34;:0.02}, 6, &#34;testing&#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>