z_listunspent - Zcash 5.5.0 RPC

z_listunspent ( minconf maxconf includeWatchonly ["zaddr",...] asOfHeight )

Returns an array of unspent shielded notes with between minconf and maxconf (inclusive)
confirmations. Results may be optionally filtered to only include notes sent to specified
addresses.
When minconf is 0, unspent notes with zero confirmations are returned, even though they are
not immediately spendable.

Arguments:
1. minconf          (numeric, optional, default=1) The minimum confirmations to filter
2. maxconf          (numeric, optional, default=9999999) The maximum confirmations to filter
3. includeWatchonly (bool, optional, default=false) Also include watchonly addresses (see 'z_importviewingkey')
4. "addresses"      (string) A json array of shielded addresses to filter on.  Duplicate addresses not allowed.
    [
      "address"     (string) Sprout, Sapling, or Unified address
      ,...
    ]
5. asOfHeight       (numeric, optional, default=-1) Execute the query as if it
                    were run when the blockchain was at the height specified by
                    this argument. The default is to use the entire blockchain
                    that the node is aware of. -1 can be used as in other RPC
                    calls to indicate the current height (including the
                    mempool), but this does not support negative values in
                    general. A “future” height will fall back to the current
                    height. Any explicit value will cause the mempool to be
                    ignored, meaning no unconfirmed tx will be considered.
                    `minconf` must be at least 1 when `asOfHeight` is provided.

Result (output indices for only one value pool will be present):
[                             (array of json object)
  {
    "txid" : "txid",                   (string) the transaction id 
    "pool" : "sprout|sapling|orchard",   (string) The shielded value pool
    "jsindex" (sprout) : n,            (numeric) the joinsplit index
    "jsoutindex" (sprout) : n,         (numeric) the output index of the joinsplit
    "outindex" (sapling, orchard) : n, (numeric) the Sapling output or Orchard action index
    "confirmations" : n,               (numeric) the number of confirmations
    "spendable" : true|false,          (boolean) true if note can be spent by wallet, false if address is watchonly
    "account" : n,                     (numeric, optional) the unified account ID, if applicable
    "address" : "address",             (string, optional) the shielded address, omitted if this note was sent to an internal receiver
    "amount": xxxxx,                   (numeric) the amount of value in the note
    "memo": xxxxx,                     (string) hexadecimal string representation of memo field
    "change": true|false,              (boolean) true if the address that received the note is also one of the sending addresses
  }
  ,...
]

Examples
> zcash-cli z_listunspent 
> zcash-cli z_listunspent 6 9999999 false "[\"ztbx5DLDxa5ZLFTchHhoPNkKs57QzSyib6UqXpEdy76T1aUdFxJt1w9318Z8DJ73XzbnWHKEZP9Yjg712N5kMmP4QzS9iC9\",\"ztfaW34Gj9FrnGUEf833ywDVL62NWXBM81u6EQnM6VR45eYnXhwztecW1SjxA7JrmAXKJhxhj3vDNEpVCQoSvVoSpmbhtjf\"]"
> curl --user myusername --data-binary '{"jsonrpc": "1.0", "id":"curltest", "method": "z_listunspent", "params": [6 9999999 false "[\"ztbx5DLDxa5ZLFTchHhoPNkKs57QzSyib6UqXpEdy76T1aUdFxJt1w9318Z8DJ73XzbnWHKEZP9Yjg712N5kMmP4QzS9iC9\",\"ztfaW34Gj9FrnGUEf833ywDVL62NWXBM81u6EQnM6VR45eYnXhwztecW1SjxA7JrmAXKJhxhj3vDNEpVCQoSvVoSpmbhtjf\"]"] }' -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