Casper.Network.SDK
Show / Hide Table of Contents

Class ExecutionResultV1

The result of executing a single deploy.

Inheritance
object
ExecutionResultV1
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.Types
Assembly: Casper.Network.SDK.dll
Syntax
public class ExecutionResultV1

Constructors

| Edit this page View Source

ExecutionResultV1()

Declaration
public ExecutionResultV1()

Properties

| Edit this page View Source

BlockHash

The block hash.

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

Cost

The cost of executing the deploy.

Declaration
[JsonPropertyName("cost")]
[JsonConverter(typeof(BigIntegerConverter))]
public BigInteger Cost { get; init; }
Property Value
Type Description
BigInteger
| Edit this page View Source

Effect

The effect of executing the deploy.

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

ErrorMessage

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

IsSuccess

Declaration
[JsonIgnore]
public bool IsSuccess { get; init; }
Property Value
Type Description
bool
| Edit this page View Source

Transfers

A record of Transfers performed while executing the deploy.

Declaration
[JsonPropertyName("transfers")]
[JsonConverter(typeof(GenericListConverter<TransferKey, GlobalStateKey.GlobalStateKeyConverter>))]
public List<TransferKey> Transfers { get; init; }
Property Value
Type Description
List<TransferKey>
  • Edit this page
  • View Source
In this article
Back to top Maintained by MAKE Technology LLC