You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/** Information about a baker pool in the current reward period. */
878
895
exportinterfaceCurrentPaydayBakerPoolStatus{
896
+
/** The number of blocks baked in the current reward period. */
879
897
blocksBaked: bigint;
898
+
/** The number of blocks baked in the current reward period. */
880
899
finalizationLive: boolean;
900
+
/** The transaction fees accruing to the pool in the current reward period. */
881
901
transactionFeesEarned: CcdAmount.Type;
902
+
/** The effective stake of the baker in the current reward period. */
882
903
effectiveStake: CcdAmount.Type;
904
+
/** The lottery power of the baker in the current reward period. */
883
905
lotteryPower: number;
906
+
/** The effective equity capital of the baker for the current reward period. */
884
907
bakerEquityCapital: CcdAmount.Type;
908
+
/** The effective delegated capital to the pool for the current reward period. */
885
909
delegatedCapital: CcdAmount.Type;
910
+
/** The commission rates that apply for the current reward period. */
886
911
commissionRates: CommissionRates;
912
+
/** A flag indicating whether the pool owner is primed for suspension. Will always be `false` if the protocol version does not support validator suspension. */
913
+
isPrimedForSuspension: boolean;
914
+
/** The number of missed rounds in the current reward period. Will always be `0n` if the protocol version does not support validator suspension. */
0 commit comments