Casper.Network.SDK
Show / Hide Table of Contents

Class DeployProcessed

A Deploy that has been executed, committed and forms part of a Block..

Inheritance
object
DeployProcessed
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 DeployProcessed

Properties

| Edit this page View Source

Account

The public key of the account that originates the Deploy.

Declaration
[JsonPropertyName("account")]
[JsonConverter(typeof(PublicKey.PublicKeyConverter))]
public PublicKey Account { get; init; }
Property Value
Type Description
PublicKey
| Edit this page View Source

BlockHash

The hash of the block containing this Deploy.

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

Dependencies

A list of hashes to other deploys that have to be run before this one.

Declaration
[JsonPropertyName("dependencies")]
public List<byte[]> Dependencies { get; set; }
Property Value
Type Description
List<byte[]>
| Edit this page View Source

DeployHash

The Deploy hash.

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

ExecutionResult

The result of executing a this Deploy.

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

Timestamp

The timestamp in which the Deploy was built.

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

Ttl

The time-to-live of the Deploy.

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