getaddressutxosextra - Pastel RPC

getaddressutxosextra {"addresses": ["taddr", ...], ("simple": true|false), ("minHeight": n)}

Returns all unspent outputs for an address including inputs for the transaction (vin).

WARNING: getaddressutxosextra is disabled.
To enable it, restart pasteld with the -insightexplorer commandline options,
or add this line to the pastel.conf file:

insightexplorer=1

Arguments:
{
  "addresses":
    [
      "address"  (string) The base58check encoded address
      ,...
    ],
  "simple"    (boolean, optional, default=false) Do not include full info about inputs with results
  "minHeight" (number, optional, default=0)      The minimum block height to include
  "sender"    (string, optional, default='')     Filter output by sender address
  "mempool"   (boolean, optional, default=false) Include mempool transactions
}

Result
[
  {
    "address"     (string) The address base58check encoded
    "txid"        (string) The output txid
    "height"      (number) The block height
    "outputIndex" (number) The output index
    "script"      (string) The script hex encoded
    "patoshis"    (number) The number of patoshis of the output
    "senders"     (array, optional) The inputs for the transaction
  }, ...
]

Where "senders" is an array of objects with the following fields:
[
    {
      "txid"        (string) The input txid
      "outputIndex" (number) The output index
      "address"     (string) The base58check encoded address
      "patoshis"    (number) The number of patoshis of the input
    }, ...
]
OR, if input is coinbase:
[
    "coinbase"  (string) The coinbase hex encoded
    ...
]
OR, if "simple" is true:
[
    "address"  (string) The base58check encoded address
    ...
]

Examples:
> pastel-cli getaddressutxosextra '{"addresses": ["tmYXBYJj1K7vhejSec5osXK2QsGa5MTisUQ"], "simple": true, "minHeight": 1000}'
> curl --user myusername --data-binary '{"jsonrpc": "1.0", "id":"curltest", "method": "getaddressutxosextra", "params": [{"addresses": ["tmYXBYJj1K7vhejSec5osXK2QsGa5MTisUQ"]}] }' -H 'content-type: text/plain;' http://127.0.0.1:9932/


Maintained by Pastel Network; license of the docs is MIT (see pastel repo)

Generated from a mainnet node