Table of Contents

Class EncryptedSelfAmountAddedEvent

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

An account transferred part of its public balance to its encrypted balance.

public sealed record EncryptedSelfAmountAddedEvent : IEquatable<EncryptedSelfAmountAddedEvent>
Inheritance
EncryptedSelfAmountAddedEvent
Implements
Inherited Members

Constructors

EncryptedSelfAmountAddedEvent(AccountAddress, byte[], CcdAmount)

An account transferred part of its public balance to its encrypted balance.

public EncryptedSelfAmountAddedEvent(AccountAddress Account, byte[] NewAmount, CcdAmount Amount)

Parameters

Account AccountAddress

The affected account.

NewAmount byte[]

The new self encrypted amount of the account.

Amount CcdAmount

The amount that was transferred from public to encrypted balance.

Properties

Account

The affected account.

public AccountAddress Account { get; init; }

Property Value

AccountAddress

Amount

The amount that was transferred from public to encrypted balance.

public CcdAmount Amount { get; init; }

Property Value

CcdAmount

NewAmount

The new self encrypted amount of the account.

public byte[] NewAmount { get; init; }

Property Value

byte[]