Casper.Network.SDK
Show / Hide Table of Contents

Class DeployInfo

Information relating to the given Deploy.

Inheritance
object
DeployInfo
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 DeployInfo

Properties

| Edit this page View Source

DeployHash

The Deploy hash.

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

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
| Edit this page View Source

Gas

Gas cost of executing the Deploy.

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

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
| Edit this page View Source

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>
  • Edit this page
  • View Source
In this article
Back to top Maintained by MAKE Technology LLC