Table of Contents

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 ContractAddress

Sender contract.

Amount CcdAmount

Amount transferred.

To AccountAddress

Receiver account.

Properties

Amount

Amount transferred.

public CcdAmount Amount { get; init; }

Property Value

CcdAmount

From

Sender contract.

public ContractAddress From { get; init; }

Property Value

ContractAddress

To

Receiver account.

public AccountAddress To { get; init; }

Property Value

AccountAddress