Casper.Network.SDK
Show / Hide Table of Contents

Class TransferV1

Represents a transfer from one purse to another

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

Properties

| Edit this page View Source

Amount

Transfer amount

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

DeployHash

Deploy that created the transfer

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

From

Account hash from which transfer was executed

Declaration
[JsonPropertyName("from")]
[JsonConverter(typeof(GlobalStateKey.GlobalStateKeyConverter))]
public AccountHashKey From { get; init; }
Property Value
Type Description
AccountHashKey
| Edit this page View Source

Gas

Gas

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

Id

User-defined id

Declaration
[JsonPropertyName("id")]
public ulong? Id { get; init; }
Property Value
Type Description
ulong?
| Edit this page View Source

Source

Source purse

Declaration
[JsonPropertyName("source")]
[JsonConverter(typeof(GlobalStateKey.GlobalStateKeyConverter))]
public URef Source { get; init; }
Property Value
Type Description
URef
| Edit this page View Source

Target

Target purse

Declaration
[JsonPropertyName("target")]
[JsonConverter(typeof(GlobalStateKey.GlobalStateKeyConverter))]
public URef Target { get; init; }
Property Value
Type Description
URef
| Edit this page View Source

To

Account to which funds are transferred

Declaration
[JsonPropertyName("to")]
[JsonConverter(typeof(GlobalStateKey.GlobalStateKeyConverter))]
public AccountHashKey To { get; init; }
Property Value
Type Description
AccountHashKey
  • Edit this page
  • View Source
In this article
Back to top Maintained by MAKE Technology LLC