decodepsbt (4.1.2 RPC) blockchain getbestblockhash getblock getblockchaininfo getblockcount getblockfilter getblockhash getblockheader getblockstats getchaintips getchaintxstats getdifficulty getmempoolancestors getmempooldescendants getmempoolentry getmempoolinfo getrawmempool gettxout gettxoutproof gettxoutsetinfo preciousblock pruneblockchain savemempool scantxoutset verifychain verifytxoutproof control getmemoryinfo getrpcinfo help logging stop uptime generating generate generatetoaddress generatetodescriptor governance getgovernanceinfo getsuperblockbudget masternodelist mnsync sentinelping spork voteraw governancewallet gobject masternode masternodebroadcast mining createauxblock getauxblock getblocktemplate getmininginfo getnetworkhashps prioritisetransaction submitauxblock submitblock submitheader network addnode clearbanned disconnectnode getaddednodeinfo getconnectioncount getnettotals getnetworkinfo getnodeaddresses getpeerinfo listbanned ping setban setnetworkactive rawtransactions analyzepsbt combinepsbt combinerawtransaction converttopsbt createpsbt createrawtransaction decodepsbt decoderawtransaction decodescript finalizepsbt fundrawtransaction getrawtransaction joinpsbts sendrawtransaction signrawtransactionwithkey testmempoolaccept utxoupdatepsbt syscoin addressbalance assetallocationbalance assetallocationbalances assetallocationinfo assetallocationverifyzdag assetinfo convertaddress getblockhashbytxid listassetallocationmempoolbalances listassetallocations listassetindex listassetindexallocations listassetindexassets listassets syscoincheckmint syscoinclearethheaders syscoindecoderawtransaction syscoingetspvproof syscoingettxroot syscoinsetethheaders syscoinsetethstatus syscoinstartgeth syscoinstopgeth tpstestadd tpstestinfo tpstestsetenabled syscoinwallet assetallocationburn assetallocationlock assetallocationmint assetallocationsend assetallocationsendmany assetnew assetsend assetsendmany assettransfer assetupdate convertaddresswallet sendfrom syscoinburntoassetallocation util createmultisig deriveaddresses estimatesmartfee getdescriptorinfo signmessagewithprivkey validateaddress verifymessage wallet abandontransaction abortrescan addmultisigaddress backupwallet bumpfee createwallet dumpprivkey dumpwallet encryptwallet getaddressesbylabel getaddressinfo getbalance getbalances getnewaddress getrawchangeaddress getreceivedbyaddress getreceivedbylabel gettransaction getunconfirmedbalance getwalletinfo importaddress importmulti importprivkey importprunedfunds importpubkey importwallet keypoolrefill listaddressgroupings listlabels listlockunspent listreceivedbyaddress listreceivedbylabel listsinceblock listtransactions listunspent listwalletdir listwallets loadwallet lockunspent removeprunedfunds rescanblockchain sendmany sendtoaddress sethdseed setlabel settxfee setwalletflag signmessage signrawtransactionwithwallet unloadwallet walletcreatefundedpsbt walletlock walletpassphrase walletpassphrasechange walletprocesspsbt zmq getzmqnotifications decodepsbt "psbt" Return a JSON object representing the serialized, base64-encoded partially signed Syscoin transaction. Arguments: 1. psbt (string, required) The PSBT base64 string Result: { "tx" : { (json object) The decoded network-serialized unsigned transaction. ... The layout is the same as the output of decoderawtransaction. }, "unknown" : { (json object) The unknown global fields "key" : "value" (key-value pair) An unknown key-value pair ... }, "inputs" : [ (array of json objects) { "non_witness_utxo" : { (json object, optional) Decoded network transaction for non-witness UTXOs ... }, "witness_utxo" : { (json object, optional) Transaction output for witness UTXOs "amount" : x.xxx, (numeric) The value in SYS "scriptPubKey" : { (json object) "asm" : "asm", (string) The asm "hex" : "hex", (string) The hex "type" : "pubkeyhash", (string) The type, eg 'pubkeyhash' "address" : "address" (string) Syscoin address if there is one } }, "partial_signatures" : { (json object, optional) "pubkey" : "signature", (string) The public key and signature that corresponds to it. ,... } "sighash" : "type", (string, optional) The sighash type to be used "redeem_script" : { (json object, optional) "asm" : "asm", (string) The asm "hex" : "hex", (string) The hex "type" : "pubkeyhash", (string) The type, eg 'pubkeyhash' } "witness_script" : { (json object, optional) "asm" : "asm", (string) The asm "hex" : "hex", (string) The hex "type" : "pubkeyhash", (string) The type, eg 'pubkeyhash' } "bip32_derivs" : { (json object, optional) "pubkey" : { (json object, optional) The public key with the derivation path as the value. "master_fingerprint" : "fingerprint" (string) The fingerprint of the master key "path" : "path", (string) The path } ,... } "final_scriptsig" : { (json object, optional) "asm" : "asm", (string) The asm "hex" : "hex", (string) The hex } "final_scriptwitness": ["hex", ...] (array of string) hex-encoded witness data (if any) "unknown" : { (json object) The unknown global fields "key" : "value" (key-value pair) An unknown key-value pair ... }, } ,... ] "outputs" : [ (array of json objects) { "redeem_script" : { (json object, optional) "asm" : "asm", (string) The asm "hex" : "hex", (string) The hex "type" : "pubkeyhash", (string) The type, eg 'pubkeyhash' } "witness_script" : { (json object, optional) "asm" : "asm", (string) The asm "hex" : "hex", (string) The hex "type" : "pubkeyhash", (string) The type, eg 'pubkeyhash' } "bip32_derivs" : [ (array of json objects, optional) { "pubkey" : "pubkey", (string) The public key this path corresponds to "master_fingerprint" : "fingerprint" (string) The fingerprint of the master key "path" : "path", (string) The path } } ,... ], "unknown" : { (json object) The unknown global fields "key" : "value" (key-value pair) An unknown key-value pair ... }, } ,... ] "fee" : fee (numeric, optional) The transaction fee paid if all UTXOs slots in the PSBT have been filled. } Examples: > syscoin-cli decodepsbt "psbt"