get_tx_details

Returns transaction details by specified transaction hash identifier.

Outputs:
tx_info — object; a tx_rpc_extended_info object (see below).

tx_rpc_extended_info object fields:

  • amount — unsigned int; sum of transaction outputs.
  • attachments — array of objects; list of transaction attachments.
  • blob_size — unsigned int; size of serialized transaction in bytes.
  • extra — array of objects; list of extra items.
  • fee — unsigned int; transaction fee.
  • id — string; hash identifier of the transaction.
  • ins — array of objects; list of inputs.
  • keeper_block — unsigned int; height of the block containing this transaction.
  • outs — array of objects; list of outputs.
  • pub_key — string; transaction public key.
  • timestamp — unsigned int; actual timestamp of the block containing this transaction.
Language