Table of Contents

Class BakerAdded

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

An account was registered as a baker.

public sealed record BakerAdded : IAccountTransactionEffects, IEquatable<BakerAdded>
Inheritance
BakerAdded
Implements
Inherited Members

Constructors

BakerAdded(BakerKeysEvent, CcdAmount, bool)

An account was registered as a baker.

public BakerAdded(BakerKeysEvent KeysEvent, CcdAmount Stake, bool RestakeEarnings)

Parameters

KeysEvent BakerKeysEvent

The keys with which the baker registered.

Stake CcdAmount

The amount the account staked to become a baker. This amount is locked.

RestakeEarnings bool

Whether the baker will automatically add earnings to their stake or not.

Properties

KeysEvent

The keys with which the baker registered.

public BakerKeysEvent KeysEvent { get; init; }

Property Value

BakerKeysEvent

RestakeEarnings

Whether the baker will automatically add earnings to their stake or not.

public bool RestakeEarnings { get; init; }

Property Value

bool

Stake

The amount the account staked to become a baker. This amount is locked.

public CcdAmount Stake { get; init; }

Property Value

CcdAmount