Casper.Network.SDK
Show / Hide Table of Contents

Class TransactionProcessed

Inheritance
object
TransactionProcessed
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Casper.Network.SDK.SSE
Assembly: Casper.Network.SDK.dll
Syntax
public class TransactionProcessed

Properties

| Edit this page View Source

BlockHash

The hash of the block containing this Transaction.

Declaration
[JsonPropertyName("block_hash")]
public string BlockHash { get; init; }
Property Value
Type Description
string
| Edit this page View Source

ExecutionResult

Versioned execution result.

Declaration
[JsonPropertyName("execution_result")]
[JsonConverter(typeof(ExecutionResult.ExecutionResultConverter))]
public ExecutionResult ExecutionResult { get; init; }
Property Value
Type Description
ExecutionResult
| Edit this page View Source

InitiatorAddr

The address of the initiator of a transaction.

Declaration
[JsonPropertyName("initiator_addr")]
public InitiatorAddr InitiatorAddr { get; set; }
Property Value
Type Description
InitiatorAddr
| Edit this page View Source

Messages

List of messages emitted in the transaction execution

Declaration
[JsonPropertyName("messages")]
public List<Message> Messages { get; init; }
Property Value
Type Description
List<Message>
| Edit this page View Source

Timestamp

The timestamp in which the Transaction was built.

Declaration
[JsonPropertyName("timestamp")]
public string Timestamp { get; init; }
Property Value
Type Description
string
| Edit this page View Source

TransactionHash

Versioned transaction hash.

Declaration
[JsonPropertyName("transaction_hash")]
public TransactionHash TransactionHash { get; init; }
Property Value
Type Description
TransactionHash
| Edit this page View Source

Ttl

The time-to-live of the Transaction.

Declaration
[JsonPropertyName("ttl")]
[JsonConverter(typeof(HumanizeTTLConverter))]
public ulong Ttl { get; set; }
Property Value
Type Description
ulong
  • Edit this page
  • View Source
In this article
Back to top Maintained by MAKE Technology LLC