Class DeployInfo
Information relating to the given Deploy.
Inherited Members
Namespace: Casper.Network.SDK.Types
Assembly: Casper.Network.SDK.dll
Syntax
public class DeployInfo
Properties
| Edit this page View SourceDeployHash
The Deploy hash.
Declaration
[JsonPropertyName("deploy_hash")]
public string DeployHash { get; init; }
Property Value
| Type | Description |
|---|---|
| string |
From
Account identifier of the creator of the Deploy.
Declaration
[JsonPropertyName("from")]
[JsonConverter(typeof(GlobalStateKey.GlobalStateKeyConverter))]
public AccountHashKey From { get; init; }
Property Value
| Type | Description |
|---|---|
| AccountHashKey |
Gas
Gas cost of executing the Deploy.
Declaration
[JsonPropertyName("gas")]
[JsonConverter(typeof(BigIntegerConverter))]
public BigInteger Gas { get; init; }
Property Value
| Type | Description |
|---|---|
| BigInteger |
Source
Source purse used for payment of the Deploy.
Declaration
[JsonPropertyName("source")]
[JsonConverter(typeof(GlobalStateKey.GlobalStateKeyConverter))]
public URef Source { get; init; }
Property Value
| Type | Description |
|---|---|
| URef |
Transfers
Transfer addresses performed by the Deploy.
Declaration
[JsonPropertyName("transfers")]
[JsonConverter(typeof(GenericListConverter<TransferKey, GlobalStateKey.GlobalStateKeyConverter>))]
public List<TransferKey> Transfers { get; init; }
Property Value
| Type | Description |
|---|---|
| List<TransferKey> |