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
CcdAmountThe remaining balance of the baker reward account.
Properties
Remainder
The remaining balance of the baker reward account.
public CcdAmount Remainder { get; init; }
Property Value
Rewards
The amount awarded to each baker.
public IDictionary<AccountAddress, CcdAmount> Rewards { get; init; }