Table of Contents

Class NewEncryptedAmountEvent

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

Event generated when an account receives a new encrypted amount.

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

Constructors

NewEncryptedAmountEvent(AccountAddress, ulong, byte[])

Event generated when an account receives a new encrypted amount.

public NewEncryptedAmountEvent(AccountAddress Receiver, ulong NewIndex, byte[] EncryptedAmount)

Parameters

Receiver AccountAddress

The account onto which the amount was added.

NewIndex ulong

The index the amount was assigned.

EncryptedAmount byte[]

The encrypted amount that was added.

Properties

EncryptedAmount

The encrypted amount that was added.

public byte[] EncryptedAmount { get; init; }

Property Value

byte[]

NewIndex

The index the amount was assigned.

public ulong NewIndex { get; init; }

Property Value

ulong

Receiver

The account onto which the amount was added.

public AccountAddress Receiver { get; init; }

Property Value

AccountAddress