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
CcdAmountAmount that was transferred.
To
AccountAddressReceiver account.
Memo
OnChainDataIncluded memo.
Properties
Amount
Amount that was transferred.
public CcdAmount Amount { get; init; }
Property Value
Memo
Included memo.
public OnChainData? Memo { get; init; }
Property Value
To
Receiver account.
public AccountAddress To { get; init; }