Params defines the parameters for the staking module.

interface ParamsSDKType {
    bond_denom: string;
    historical_entries: number;
    max_entries: number;
    max_validators: number;
    max_voting_power_enforcement_threshold: string;
    max_voting_power_ratio: string;
    min_commission_rate: string;
    unbonding_time: undefined | DurationSDKType;
}

Properties

bond_denom: string
historical_entries: number
max_entries: number
max_validators: number
max_voting_power_enforcement_threshold: string
max_voting_power_ratio: string
min_commission_rate: string
unbonding_time: undefined | DurationSDKType