Transaction Log
A Transaction Log is a record of a MobileCoin transaction that was constructed and sent from this wallet, or that was received at an address belonging to an account in this wallet.
Due to the privacy properties of the MobileCoin ledger, transactions are ephemeral. Once they have been created, they only exist until they are validated, and then only the outputs are written to the ledger. For this reason, the Full-service Wallet stores transactions in the transaction_log
table in order to preserve transaction history.
Attributes
Name
Type
Description
object
string, value is "transaction_log"
String representing the object's type. Objects of the same type share the same value.
transaction_log_id
integer
Unique identifier for the transaction log. This value is not associated to the ledger.
direction
string
A string that identifies if this transaction log was sent or received. Valid values are "sent" or "received".
is_sent_recovered
Boolean
Flag that indicates if the sent transaction log was recovered from the ledger. This value is null for "received" transaction logs. If true, some information may not be available on the transaction log and its TXOs without user input. If true, the fee receipient_address_id
, fee, and sent_time
will be null without user input.
account_id
string
Unique identifier for the assigned associated account. If the transaction is outgoing, this account is from whence the TXO came. If received, this is the receiving account.
recipient_address_id
string
Unique identifier for the recipient associated account. Only available if direction is "sent".
assigned_address_id
string
Unique identifier for the assigned associated account. Only available if direction is "received".
value_pmob
string (uint64)
Value in pico MOB associated to this transaction log.
fee_pmob
string (uint64)
Fee in pico MOB associated to this transaction log. Only on outgoing transaction logs. Only available if direction is "sent".
submitted_block_index
string (uint64)
The block index of the highest block on the network at the time the transaction was submitted.
finalized_block_index
string (uint64)
The scanned block block index in which this transaction occurred.
status
string
String representing the transaction log status. On "sent", valid statuses are "built", "pending", "succeeded", "failed". On "received", the status is "succeeded".
input_txo_ids
[string]
A list of the IDs of the TXOs which were inputs to this transaction.
output_txo_ids
[string]
A list of the IDs of the TXOs which were outputs of this transaction.
change_txo_ids
[string]
A list of the IDs of the TXOs which were change in this transaction.
sent_time
Timestamp
Time at which sent transaction log was created. Only available if direction is "sent". This value is null if "received" or if the sent transactions were recovered from the ledger (is_sent_recovered = true
).
comment
string
An arbitrary string attached to the object.
failure_code
integer
Code representing the cause of "failed" status.
failure_message
string
Human parsable explanation of "failed" status.
Example
Last updated
Was this helpful?