Class ExecutionInfo
Inherited Members
Namespace: Casper.Network.SDK.Types
Assembly: Casper.Network.SDK.dll
Syntax
public class ExecutionInfo
Properties
| Edit this page View SourceBlockHash
The hash of the block in which the transaction/deploy was executed.
Declaration
[JsonPropertyName("block_hash")]
public string BlockHash { get; init; }
Property Value
| Type | Description |
|---|---|
| string |
BlockHeight
The height of the block in which the transaction/deploy was executed.
Declaration
[JsonPropertyName("block_height")]
public ulong BlockHeight { get; init; }
Property Value
| Type | Description |
|---|---|
| ulong |
ExecutionResult
The map of block hash to execution result.
Declaration
[JsonPropertyName("execution_result")]
[JsonConverter(typeof(ExecutionResult.ExecutionResultConverter))]
public ExecutionResult ExecutionResult { get; init; }
Property Value
| Type | Description |
|---|---|
| ExecutionResult |