Skip to content
Merged
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
5 changes: 3 additions & 2 deletions KIPs/kip-286.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,9 @@ The following parameters are used in this KIP:
| `MinStake` | Minimum staking amount required to enter the consensus | 5,000,000 KAIA |
| `ValPausedTimeout` | Maximum duration a validator can remain in `ValPaused` before transitioning to `ValInactive` | 8 hours |
| `ValIdleTimeout` | Maximum duration a validator can remain in `ValInactive` or `ValReady` before transitioning to `Registered` | 30 days |
| `ValPausedSlotLimit` | Maximum number of validators that can be in `ValPaused` | 1\*`F` / 2, where `F` is the byzantine fault tolerance factor |
| `ValExitingSlotLimit` | Maximum number of validators that can be in `ValExiting` | 1\*`F` / 2, where `F` is the byzantine fault tolerance factor |
| `MinActiveCount` | Minimum number of `ValActive` validators required for BFT liveness | `ceil(2n/3)` where `n` = `ValActive` count at epoch start |
| `ValPausedSlotLimit` | Maximum number of validators that can be in `ValPaused` | `ceil(floor(n/3) / 2)` where `n` = `ValActive` count at epoch start |
| `ValExitingSlotLimit` | Maximum number of validators that can be in `ValExiting` | `ceil(floor(n/3) / 2)` where `n` = `ValActive` count at epoch start |
| `VRankEpoch (Epoch)` | Epoch interval for vrank | 86400 |
| `PFS_THRESHOLD` | Threshold for proposal failure score (PFS) per epoch. PFS ≥ PFS_THRESHOLD indicates severe violation (defined in [KIP-227](./kip-227.md)) | 2 |
| `CFS_THRESHOLD` | Threshold for candidate failure score during VRank testing. CFS ≥ CFS_THRESHOLD indicates failing the testing (defined in [KIP-227](./kip-227.md)) | 300 |
Expand Down
Loading