Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: improve changelog for Inactive Provider Validators #2131

Merged
merged 3 commits into from
Aug 13, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
- Add the _Inactive Provider Validators_ feature (as per
[ADR-017](https://cosmos.github.io/interchain-security/adrs/adr-017-allowing-inactive-validators)),
which entails the following changes on the provider.
([\#2079](https://github.com/cosmos/interchain-security/pull/2079))

- Add `max_provider_consensus_validators`, a provider module param that sets
the maximum number of validators that will be passed to the provider consensus engine.
- Add `no_valupdates_genutil` and `no_valupdates_staking`, "wrapper" modules around
the Cosmos SDK's native genutil and staking modules. Both modules provide the exact
same functionality as the native modules, except returning validator set updates
p-offtermatt marked this conversation as resolved.
Show resolved Hide resolved
to the provider consensus engine.
- Return the first `max_provider_consensus_validators` validators (sorted by largest amount of stake first)
to the provider consensus engine.
- Use the `max_validators` validators as basis for the validator sets sent to the consumers
(`max_validators` is a staking module param).
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
- Add minimum stake requirement to let consumer chains
determine requirements for validators that validate their chain. ([\#2035](https://github.com/cosmos/interchain-security/pull/2035))
- Add `min_stake`, a power shaping configuration that enables consumers to set
the minimum amount of provider stake every validator needs to be eligible to opt-in.
p-offtermatt marked this conversation as resolved.
Show resolved Hide resolved
([\#2035](https://github.com/cosmos/interchain-security/pull/2035))
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
- Add `allow_inactive_vals`, a power shaping configuration that enables consumers
to specify whether validators outside the active provider validator set are eligible to opt-in.
([\#2066](https://github.com/cosmos/interchain-security/pull/2066))

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
- Add the _Inactive Provider Validators_ feature (as per
[ADR-017](https://cosmos.github.io/interchain-security/adrs/adr-017-allowing-inactive-validators)),
which entails the following changes on the provider.
([\#2079](https://github.com/cosmos/interchain-security/pull/2079))

- Add `max_provider_consensus_validators`, a provider module param that sets
the maximum number of validators that will be passed to the provider consensus engine.
- Add `no_valupdates_genutil` and `no_valupdates_staking`, "wrapper" modules around
the Cosmos SDK's native genutil and staking modules. Both modules provide the exact
same functionality as the native modules, except returning validator set updates
to the provider consensus engine.
- Return the first `max_provider_consensus_validators` validators (sorted by largest amount of stake first)
to the provider consensus engine.
- Use the `max_validators` validators as basis for the validator sets sent to the consumers
(`max_validators` is a staking module param).
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
- Add minimum stake requirement to let consumer chains
determine requirements for validators that validate their chain. ([\#2035](https://github.com/cosmos/interchain-security/pull/2035))
- Add `min_stake`, a power shaping configuration that enables consumers to set
the minimum amount of provider stake every validator needs to be eligible to opt-in.
([\#2035](https://github.com/cosmos/interchain-security/pull/2035))
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
- Add `allow_inactive_vals`, a power shaping configuration that enables consumers
to specify whether validators outside the active provider validator set are eligible to opt-in.
([\#2066](https://github.com/cosmos/interchain-security/pull/2066))

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
- Add the _Inactive Provider Validators_ feature (as per
[ADR-017](https://cosmos.github.io/interchain-security/adrs/adr-017-allowing-inactive-validators)).
([\#2079](https://github.com/cosmos/interchain-security/pull/2079))
Loading