Table of Contents

Class BakerStakeUpdatedData

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

Data contained in the transaction response in case a baker stake was updated (either increased or decreased.)

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

Constructors

BakerStakeUpdatedData(BakerId, CcdAmount, bool)

Data contained in the transaction response in case a baker stake was updated (either increased or decreased.)

public BakerStakeUpdatedData(BakerId BakerId, CcdAmount NewStake, bool Increased)

Parameters

BakerId BakerId

Affected baker.

NewStake CcdAmount

New stake.

Increased bool

A boolean which indicates whether it increased (true) or decreased (false).

Properties

BakerId

Affected baker.

public BakerId BakerId { get; init; }

Property Value

BakerId

Increased

A boolean which indicates whether it increased (true) or decreased (false).

public bool Increased { get; init; }

Property Value

bool

NewStake

New stake.

public CcdAmount NewStake { get; init; }

Property Value

CcdAmount