Class DeployProcessed
Inherited Members
Namespace: Casper.Network.SDK.SSE
Assembly: Casper.Network.SDK.dll
Syntax
public class DeployProcessed
Properties
| Edit this page View SourceAccount
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 |
BlockHash
The hash of the block containing this Deploy.
Declaration
[JsonPropertyName("block_hash")]
public string BlockHash { get; init; }
Property Value
| Type | Description |
|---|---|
| string |
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[]> |
DeployHash
The Deploy hash.
Declaration
[JsonPropertyName("deploy_hash")]
public string DeployHash { get; init; }
Property Value
| Type | Description |
|---|---|
| string |
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 |
Timestamp
The timestamp in which the Deploy was built.
Declaration
[JsonPropertyName("timestamp")]
public string Timestamp { get; init; }
Property Value
| Type | Description |
|---|---|
| string |
Ttl
The time-to-live of the Deploy.
Declaration
[JsonPropertyName("ttl")]
[JsonConverter(typeof(HumanizeTTLConverter))]
public ulong Ttl { get; set; }
Property Value
| Type | Description |
|---|---|
| ulong |