Skip to main content

Module sui_system::stake_subsidy

Struct StakeSubsidy

public struct StakeSubsidy has store
Click to open
Fields
balance: sui::balance::Balance<sui::sui::SUI>
Balance of SUI set aside for stake subsidies that will be drawn down over time.
distribution_counter: u64
Count of the number of times stake subsidies have been distributed.
current_distribution_amount: u64
The amount of stake subsidy to be drawn down per distribution.
This amount decays and decreases over time.
stake_subsidy_period_length: u64
Number of distributions to occur before the distribution amount decays.
stake_subsidy_decrease_rate: u16
The rate at which the distribution amount decays at the end of each period. Expressed in basis points.
extra_fields: sui::bag::Bag
Any extra fields that's not defined statically.

Constants

const BASIS_POINT_DENOMINATOR: u128 = 10000;

Function create

public(package) fun create(balance: sui::balance::Balance<sui::sui::SUI>, initial_distribution_amount: u64, stake_subsidy_period_length: u64, stake_subsidy_decrease_rate: u16, ctx: &mut sui::tx_context::TxContext): sui_system::stake_subsidy::StakeSubsidy

Function advance_epoch

Advance the epoch counter and draw down the subsidy for the epoch.

Function current_epoch_subsidy_amount

Returns the amount of stake subsidy to be added at the end of the current epoch.

Function get_distribution_counter

Returns the number of distributions that have occurred.