Table of Contents

Class AccountTransfer

Namespace
Concordium.Sdk.Types
Assembly
Concordium.Sdk.dll

A simple account to account transfer occurred possible with a memo.

public sealed record AccountTransfer : IAccountTransactionEffects, IEquatable<AccountTransfer>
Inheritance
AccountTransfer
Implements
Inherited Members

Constructors

AccountTransfer(CcdAmount, AccountAddress, OnChainData?)

A simple account to account transfer occurred possible with a memo.

public AccountTransfer(CcdAmount Amount, AccountAddress To, OnChainData? Memo)

Parameters

Amount CcdAmount

Amount that was transferred.

To AccountAddress

Receiver account.

Memo OnChainData

Included memo.

Properties

Amount

Amount that was transferred.

public CcdAmount Amount { get; init; }

Property Value

CcdAmount

Memo

Included memo.

public OnChainData? Memo { get; init; }

Property Value

OnChainData

To

Receiver account.

public AccountAddress To { get; init; }

Property Value

AccountAddress