Class ExecutionResultV1
The result of executing a single deploy.
Inheritance
ExecutionResultV1
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
Declaration
[JsonPropertyName("block_hash")]
public string BlockHash { get; init; }
Property Value
|
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
|
Edit this page
View Source
Effect
The effect of executing the deploy.
Declaration
[JsonPropertyName("effect")]
public ExecutionEffect Effect { get; init; }
Property Value
|
Edit this page
View Source
ErrorMessage
Declaration
[JsonPropertyName("error_message")]
public string ErrorMessage { get; init; }
Property Value
|
Edit this page
View Source
IsSuccess
Declaration
[JsonIgnore]
public bool IsSuccess { get; init; }
Property Value
|
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