Returns details for each transaction in an unsigned or multisig transaction set. Transaction sets are obtained as return values from one of the following RPC methods:
* transfer
* transfer_split
* sweep_all
* sweep_single
* sweep_dust
These methods return unsigned transaction sets if the wallet is view-only (i.e. the wallet was created without the private spend key).
Inputs:
**unsigned_txset* - string; (Optional) A hexadecimal string representing a set of unsigned transactions (empty for multisig transactions; non-multisig signed transactions are not supported).
**multisig_txset* - string; (Optional) A hexadecimal string representing the set of signing keys used in a multisig transaction (empty for unsigned transactions; non-multisig signed transactions are not supported).
Outputs:
**desc* - The description of the transfer as a list of:
**amount_in* - unsigned int (64 bit); The sum of the inputs spent by the transaction in @atomic units.
**amount_out* - unsigned int (64 bit); The sum of the outputs created by the transaction in @atomic units.
**recipients* - list of:
**address* - string; The public address of the recipient.
**amount* - unsigned int; The amount sent to the recipient in @atomic units.
**change_address* - string; The address of the change recipient.
**change_amount* - unsigned int; The amount sent to the change address in @atomic units.
**fee* - unsigned int; The fee charged for the transaction in @atomic units.
**payment_id* - string; payment ID for this transfer (empty if not provided.
**ring_size* - unsigned int; The number of inputs in the ring (1 real output + the number of decoys from the blockchain).
**unlock_time* - unsigned int; The number of blocks before the monero can be spent (0 for no lock).
**dummy_outputs* - unsigned int; The number of fake outputs added to single-output transactions. Fake outputs have 0 amount and are sent to a random address.
**extra* - string; Arbitrary transaction data in hexadecimal format.