getaddresstxids - Pastel RPC

getaddresstxids {"addresses": ["taddr", ...], ("start": n), ("end": n)}

Returns the transaction ids for given transparent addresses within the given (inclusive)
block height range, default is the full blockchain.

Returned txids are in the order they appear in blocks, which
ensures that they are topologically sorted (i.e. parent txids will appear before child txids).

WARNING: getaddresstxids 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":
    [
      "taddr"  (string) The base58check encoded address
      ,...
    ]
  "start" (number, optional) The start block height
  "end"   (number, optional) The end block height
}
(or)
  "address" (string) The base58check encoded address

Result:
[
  "txid"  (string) The transaction id
  ,...
]

Examples:
> pastel-cli getaddresstxids '{"addresses": ["PtczsZ91Bt3oDPDQotzUsrx1wjmsFVgf28n"], "start": 1000, "end": 2000}'
> curl --user myusername --data-binary '{"jsonrpc": "1.0", "id":"curltest", "method": "getaddresstxids", "params": [{"addresses": ["PtczsZ91Bt3oDPDQotzUsrx1wjmsFVgf28n"], "start": 1000, "end": 2000}] }' -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