Casper.Network.SDK
Show / Hide Table of Contents

Class DeployHeader

Header information of a Deploy.

Inheritance
System.Object
DeployHeader
Namespace: Casper.Network.SDK.Types
Assembly: Casper.Network.SDK.dll
Syntax
public class DeployHeader : object

Constructors

DeployHeader()

Declaration
public DeployHeader()

Properties

Account

Public Key from the Account owning the Deploy.

Declaration
public PublicKey Account { get; set; }
Property Value
Type Description
PublicKey

BodyHash

Hash of the body part of this Deploy.

Declaration
public string BodyHash { get; set; }
Property Value
Type Description
System.String

ChainName

Name of the chain where the deploy is executed.

Declaration
public string ChainName { get; set; }
Property Value
Type Description
System.String

Dependencies

List of Deploy hashes.

Declaration
public List<string> Dependencies { get; set; }
Property Value
Type Description
List<System.String>

GasPrice

Gas price

Declaration
public ulong GasPrice { get; set; }
Property Value
Type Description
System.UInt64

Timestamp

Timestamp formatted as per RFC 3339

Declaration
public ulong Timestamp { get; set; }
Property Value
Type Description
System.UInt64

Ttl

Duration of the Deploy in milliseconds (from timestamp).

Declaration
public ulong Ttl { get; set; }
Property Value
Type Description
System.UInt64
In This Article
Back to top Maintained by MAKE Technology LLC