gettxout - Komodo RPC

gettxout "txid" n ( includemempool )

Returns details about an unspent transaction output.

Arguments:
1. "txid"       (string, required) The transaction id
2. n              (numeric, required) vout value
3. includemempool  (boolean, optional) Whether to include the mempool

Result:
{
  "bestblock" : "hash",    (string) the block hash
  "confirmations" : n,       (numeric) The number of notarized DPoW confirmations
  "rawconfirmations" : n,    (numeric) The number of raw confirmations
  "value" : x.xxx,           (numeric) The transaction value in KMD
  "scriptPubKey" : {         (json object)
     "asm" : "code",       (string) 
     "hex" : "hex",        (string) 
     "reqSigs" : n,          (numeric) Number of required signatures
     "type" : "pubkeyhash", (string) The type, eg pubkeyhash
     "addresses" : [          (array of string) array of Komodo addresses
        "komodoaddress"        (string) Komodo address
        ,...
     ]
  },
  "version" : n,              (numeric) The version
  "coinbase" : true|false     (boolean) Coinbase or not
}

Examples:

Get unspent transactions
> komodo-cli listunspent 

View the details
> komodo-cli gettxout "txid" 1

As a json rpc call
> curl --user myusername --data-binary '{"jsonrpc": "1.0", "id":"curltest", "method": "gettxout", "params": ["txid", 1] }' -H 'content-type: text/plain;' http://127.0.0.1:7771/


Docs generated by komodo v0.6.1. You can find this github repo at github.com/komodo-rpc/komodo-rpc.github.io.




Auction











Lotto