71 lines
2.2 KiB
Go
71 lines
2.2 KiB
Go
package gov
|
|
|
|
import (
|
|
"fmt"
|
|
"time"
|
|
|
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
|
)
|
|
|
|
// Param around deposits for governance
|
|
type DepositParams struct {
|
|
MinDeposit sdk.Coins `json:"min_deposit"` // Minimum deposit for a proposal to enter voting period.
|
|
MaxDepositPeriod time.Duration `json:"max_deposit_period"` // Maximum period for Atom holders to deposit on a proposal. Initial value: 2 months
|
|
}
|
|
|
|
func (dp DepositParams) String() string {
|
|
return fmt.Sprintf(`Deposit Params:
|
|
Min Deposit: %s
|
|
Max Deposit Period: %s`, dp.MinDeposit, dp.MaxDepositPeriod)
|
|
}
|
|
|
|
// Checks equality of DepositParams
|
|
func (dp DepositParams) Equal(dp2 DepositParams) bool {
|
|
return dp.MinDeposit.IsEqual(dp2.MinDeposit) && dp.MaxDepositPeriod == dp2.MaxDepositPeriod
|
|
}
|
|
|
|
// Param around Tallying votes in governance
|
|
type TallyParams struct {
|
|
Quorum sdk.Dec `json:"quorum"` // Minimum percentage of total stake needed to vote for a result to be considered valid
|
|
Threshold sdk.Dec `json:"threshold"` // Minimum propotion of Yes votes for proposal to pass. Initial value: 0.5
|
|
Veto sdk.Dec `json:"veto"` // Minimum value of Veto votes to Total votes ratio for proposal to be vetoed. Initial value: 1/3
|
|
}
|
|
|
|
func (tp TallyParams) String() string {
|
|
return fmt.Sprintf(`Tally Params:
|
|
Quorum: %s
|
|
Threshold: %s
|
|
Veto: %s`,
|
|
tp.Quorum, tp.Threshold, tp.Veto)
|
|
}
|
|
|
|
// Param around Voting in governance
|
|
type VotingParams struct {
|
|
VotingPeriod time.Duration `json:"voting_period"` // Length of the voting period.
|
|
}
|
|
|
|
func (vp VotingParams) String() string {
|
|
return fmt.Sprintf(`Voting Params:
|
|
Voting Period: %s`, vp.VotingPeriod)
|
|
}
|
|
|
|
// Params returns all of the governance params
|
|
type Params struct {
|
|
VotingParams VotingParams `json:"voting_params"`
|
|
TallyParams TallyParams `json:"tally_params"`
|
|
DepositParams DepositParams `json:"deposit_params"`
|
|
}
|
|
|
|
func (gp Params) String() string {
|
|
return gp.VotingParams.String() + "\n" +
|
|
gp.TallyParams.String() + "\n" + gp.DepositParams.String()
|
|
}
|
|
|
|
func NewParams(vp VotingParams, tp TallyParams, dp DepositParams) Params {
|
|
return Params{
|
|
VotingParams: vp,
|
|
DepositParams: dp,
|
|
TallyParams: tp,
|
|
}
|
|
}
|