Class GetDeployResult
Result for "info_get_deploy" RPC response.
Namespace: Casper.Network.SDK.JsonRpc.ResultTypes
Assembly: Casper.Network.SDK.dll
Syntax
public class GetDeployResult : RpcResult
Properties
BlockHash
The hash of this deploy's block.
Declaration
public string BlockHash { get; set; }
Property Value
Type | Description |
---|---|
System.String |
BlockHeight
The height of this deploy's block.
Declaration
public ulong BlockHeight { get; set; }
Property Value
Type | Description |
---|---|
System.UInt64 |
Deploy
The deploy.
Declaration
public Deploy Deploy { get; set; }
Property Value
Type | Description |
---|---|
Deploy |
ExecutionResults
The map of block hash to execution result.
Declaration
public List<ExecutionResult> ExecutionResults { get; set; }
Property Value
Type | Description |
---|---|
List<ExecutionResult> |