Class Transferred
- Namespace
- Concordium.Sdk.Types
- Assembly
- Concordium.Sdk.dll
A contract transferred an amount to the account.
public sealed record Transferred : IContractTraceElement, IEquatable<Transferred>
- Inheritance
-
Transferred
- Implements
- Inherited Members
Constructors
Transferred(ContractAddress, CcdAmount, AccountAddress)
A contract transferred an amount to the account.
public Transferred(ContractAddress From, CcdAmount Amount, AccountAddress To)
Parameters
From
ContractAddressSender contract.
Amount
CcdAmountAmount transferred.
To
AccountAddressReceiver account.
Properties
Amount
Amount transferred.
public CcdAmount Amount { get; init; }
Property Value
From
Sender contract.
public ContractAddress From { get; init; }
Property Value
To
Receiver account.
public AccountAddress To { get; init; }