Table of Contents

Class BakingRewards

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

Reward issued to all the bakers at the end of an epoch for baking blocks in the epoch.

public sealed record BakingRewards : ISpecialEvent, IEquatable<BakingRewards>
Inheritance
BakingRewards
Implements
Inherited Members

Constructors

BakingRewards(IDictionary<AccountAddress, CcdAmount>, CcdAmount)

Reward issued to all the bakers at the end of an epoch for baking blocks in the epoch.

public BakingRewards(IDictionary<AccountAddress, CcdAmount> Rewards, CcdAmount Remainder)

Parameters

Rewards IDictionary<AccountAddress, CcdAmount>

The amount awarded to each baker.

Remainder CcdAmount

The remaining balance of the baker reward account.

Properties

Remainder

The remaining balance of the baker reward account.

public CcdAmount Remainder { get; init; }

Property Value

CcdAmount

Rewards

The amount awarded to each baker.

public IDictionary<AccountAddress, CcdAmount> Rewards { get; init; }

Property Value

IDictionary<AccountAddress, CcdAmount>