StakeRewardParams: {
    amount: number;
    commission?: number | null;
    effectiveSlot: number;
    epoch: number;
    postBalance: number;
    stakeAccountAddress: string;
}

Parameters representing a stake reward.

Type declaration

  • amount: number

    The amount of the reward.

  • Optional commission?: number | null

    The commission taken by the validator (optional).

  • effectiveSlot: number

    The effective slot at the time of the reward.

  • epoch: number

    The epoch in which the reward occurred.

  • postBalance: number

    The post-reward balance of the stake account.

  • stakeAccountAddress: string

    The address of the stake account.

Generated using TypeDoc