interface ParamsAmino {
    lookback_duration?: string;
    min_valid_per_window?: string;
    reward_band?: string;
    slash_fraction?: string;
    slash_window?: string;
    vote_period?: string;
    vote_threshold?: string;
    whitelist?: DenomAmino[];
}

Properties

lookback_duration?: string
min_valid_per_window?: string

The minimum percentage of voting windows for which a validator must have successes in order to not be penalized at the end of the slash window.

reward_band?: string
slash_fraction?: string
slash_window?: string

The interval in blocks at which the oracle module will assess validator penalty counters, and penalize validators with too poor performance.

vote_period?: string

The number of blocks per voting window, at the end of the vote period, the oracle votes are assessed and exchange rates are calculated. If the vote period is 1 this is equivalent to having oracle votes assessed and exchange rates calculated in each block.

vote_threshold?: string
whitelist?: DenomAmino[]