GetTransactionLog

rpc GetTransactionLog

asset_controller.GetTransactionLogRequest

Create a logs for a transaction using Contracts 2.0

requests GetTransactionLogRequest

asset_controller.GetTransactionLogRequest

FieldTypeDescription
uetrstringA Unique End-to-end Transaction Reference, string of 36 unique characters.
verifierstringWallet verifier.

returns GetTransactionLogResponse

asset_controller.GetTransactionLogResponse

FieldTypeDescription
log repeatedLogEntryLog of all interactions of this contract
{
  "log": [
    {
      "timestamp": "2006-01-02T15:04:05Z",
      "kind": "ContractPayment",
      "state": "Awaiting",
      "event": "Received promissory"
    },
    {
      "timestamp": "2007-01-02T15:04:05Z",
      "kind": "ContractPayment",
      "state": "Awaiting",
      "event": "Received promissory"
    }
  ]
}