Documentation ¶
Index ¶
- Constants
- Variables
- func ActiveProposalByTimeKey(endBlock uint64) []byte
- func ActiveProposalQueueKey(proposalID uint64, endBlock uint64) []byte
- func CheckProposalAddress(address sdk.AccAddress) bool
- func DoneKey() []byte
- func ErrAlreadyActiveProposal() *sdkerrors.Error
- func ErrDurationTooLong() *sdkerrors.Error
- func ErrInactiveProposal(proposalID string) *sdkerrors.Error
- func ErrInvalidGenesis() *sdkerrors.Error
- func ErrInvalidProposalContent() *sdkerrors.Error
- func ErrInvalidProposalContentDescrBlank() *sdkerrors.Error
- func ErrInvalidProposalContentDescrLong(MaxDescriptionLength string) *sdkerrors.Error
- func ErrInvalidProposalContentTitleBlank() *sdkerrors.Error
- func ErrInvalidProposalContentTitleLong(MaxTitleLength string) *sdkerrors.Error
- func ErrInvalidProposalType(ProposalType string) *sdkerrors.Error
- func ErrInvalidStartEndBlocks(StartBlock string, EndBlock string) *sdkerrors.Error
- func ErrInvalidVote(option string) *sdkerrors.Error
- func ErrNoProposalHandlerExists() *sdkerrors.Error
- func ErrNotAllowed() *sdkerrors.Error
- func ErrStartBlock() *sdkerrors.Error
- func ErrSubmitProposal(error string) *sdkerrors.Error
- func ErrUnknownProposal(proposalID string) *sdkerrors.Error
- func GetBytesFromUint64(i uint64) []byte
- func GetProposalIDBytes(proposalID uint64) (proposalIDBz []byte)
- func GetProposalIDFromBytes(bz []byte) (proposalID uint64)
- func GetUint64FromBytes(b []byte) uint64
- func InactiveProposalByTimeKey(endBlock uint64) []byte
- func InactiveProposalQueueKey(proposalID uint64, endBlock uint64) []byte
- func ParamKeyTable() params.KeyTable
- func PlanKey() []byte
- func ProposalKey(proposalID uint64) []byte
- func RegisterCodec(cdc *codec.Codec)
- func RegisterProposalTypeCodec(o interface{}, name string)
- func SplitActiveProposalQueueKey(key []byte) (proposalID uint64, endBlock uint64)
- func SplitInactiveProposalQueueKey(key []byte) (proposalID uint64, endBlock uint64)
- func SplitProposalKey(key []byte) (proposalID uint64)
- func UpgradedClientKey(height int64) []byte
- func UpgradedConsStateKey(height int64) []byte
- func ValidProposalStatus(status ProposalStatus) bool
- func ValidVoteOption(option VoteOption) bool
- func Validate(c Content) error
- func ValidateGenesis(data GenesisState) error
- func VoteKey(proposalID uint64, voterAddr sdk.ValAddress) []byte
- func VotesKey(proposalID uint64) []byte
- type AccountKeeper
- type CodeType
- type Content
- type GenesisState
- type Handler
- type MsgSoftwareUpgradeProposal
- func (msg MsgSoftwareUpgradeProposal) GetSignBytes() []byte
- func (msg MsgSoftwareUpgradeProposal) GetSigners() []sdk.AccAddress
- func (msg MsgSoftwareUpgradeProposal) Route() string
- func (msg MsgSoftwareUpgradeProposal) String() string
- func (msg MsgSoftwareUpgradeProposal) Type() string
- func (msg MsgSoftwareUpgradeProposal) ValidateBasic() error
- type MsgSubmitProposal
- type MsgVote
- type ParamSubspace
- type Params
- type Plan
- type Proposal
- type ProposalQueue
- type ProposalStatus
- func (status ProposalStatus) Format(s fmt.State, verb rune)
- func (status ProposalStatus) Marshal() ([]byte, error)
- func (status ProposalStatus) MarshalJSON() ([]byte, error)
- func (status ProposalStatus) String() string
- func (status *ProposalStatus) Unmarshal(data []byte) error
- func (status *ProposalStatus) UnmarshalJSON(data []byte) error
- type Proposals
- type QueryDepositParams
- type QueryProposalParams
- type QueryProposalVotesParams
- type QueryProposalsParams
- type QueryVoteParams
- type Router
- type SupplyKeeper
- type TallyParams
- type TallyResult
- type UpgradeConfig
- type ValidatorGovInfo
- type ValidatorKeeper
- type Vote
- type VoteOption
- type Votes
Constants ¶
const ( MaxDescriptionLength int = 5000 MaxTitleLength int = 140 )
Constants pertaining to a Content object
const ( // Default coin codespace DefaultCodespace string = ModuleName DurationInMonth int = 3 DurationInBlocks int = 1296000 CodeUnknownProposal CodeType = 100 CodeInactiveProposal CodeType = 200 CodeAlreadyActiveProposal CodeType = 300 // proposal content CodeInvalidProposalContent CodeType = 400 CodeInvalidProposalContentTitleBlank CodeType = 401 CodeInvalidProposalContentTitleLong CodeType = 402 CodeInvalidProposalContentDescrBlank CodeType = 403 CodeInvalidProposalContentDescrLong CodeType = 404 CodeInvalidProposalType CodeType = 500 CodeInvalidVote CodeType = 600 CodeInvalidGenesis CodeType = 700 CodeNoProposalHandlerExists CodeType = 800 CodeInvalidStartEndBlocks CodeType = 900 CodeSubmitProposal CodeType = 1000 CodeStartBlock CodeType = 1100 CodeDurationTooLong CodeType = 1200 CodeNotAllowed CodeType = 1300 )
const ( EventTypeSubmitProposal = "submit_proposal" EventTypeProposalVote = "proposal_vote" EventTypeInactiveProposal = "inactive_proposal" EventTypeActiveProposal = "active_proposal" AttributeKeyProposalResult = "proposal_result" AttributeKeyOption = "option" AttributeKeyProposalID = "proposal_id" AttributeKeyVotingPeriodStart = "voting_period_start" AttributeValueCategory = "governance" AttributeValueProposalPassed = "proposal_passed" // met vote quorum AttributeValueProposalRejected = "proposal_rejected" // didn't meet vote quorum AttributeValueProposalFailed = "proposal_failed" // error on proposal handler AttributeKeyProposalType = "proposal_type" AttributeKeyProposalTitle = "proposal_title" AttributeKeyProposalDescription = "proposal_description" AttributeKeyProposalVotingStartBlock = "proposal_voting_start_block" AttributeKeyProposalVotingEndBlock = "proposal_voting_end_block" AttributeKeyResultVoteYes = "result_vote_yes" AttributeKeyResultVoteAbstain = "result_vote_abstain" AttributeKeyResultVoteNo = "result_vote_no" AttributeKeyTotalVotingPower = "total_voting_power" AttributeKeyUpgradeHeight = "upgrade_height" )
Governance module event types
const ( // ModuleName is the name of the module ModuleName = "gov" // StoreKey is the store key string for gov StoreKey = coin.StoreKey // RouterKey is the message route for gov RouterKey = ModuleName // QuerierRoute is the querier route for gov QuerierRoute = ModuleName // DefaultParamspace default name for parameter store DefaultParamspace = ModuleName KeyUpgradedIBCState = "upgradedIBCState" KeyUpgradedClient = "upgradedClient" KeyUpgradedConsState = "upgradedConsState" )
const ( TypeMsgVote = "vote" TypeMsgSubmitProposal = "submit_proposal" TypeMsgSoftwareUpgrade = "software_upgrade" )
Governance message types and routes
const ( QueryParams = "params" QueryProposals = "proposals" QueryProposal = "proposal" QueryDeposits = "deposits" QueryDeposit = "deposit" QueryVotes = "votes" QueryVote = "vote" QueryTally = "tally" ParamDeposit = "deposit" ParamVoting = "voting" ParamTallying = "tallying" )
query endpoints supported by the governance Querier
const AddressForSoftwareUpgrade = "dx15gflwp3lj4neh2gt9p4ljrv9vtlda836xj7kev"
const DefaultStartingProposalID uint64 = 1
DefaultStartingProposalID is 1
Variables ¶
var ( LegacyProposalsKeyPrefix = []byte{0x00} LegacyActiveProposalQueuePrefix = []byte{0x01} LegacyInactiveProposalQueuePrefix = []byte{0x02} LegacyProposalIDKey = []byte{0x03} LegacyVotesKeyPrefix = []byte{0x10} LegacyPlanPrefix = []byte{0x20} LegacyDonePrefix = []byte{0x21} // This is special key used to determine if kv-records are migrated to keys with correct prefixes LegacyMigrationKey = []byte("gov/migrated") )
var ( ProposalsKeyPrefix = []byte("gov/proposals/") ActiveProposalQueuePrefix = []byte("gov/proposals/active/") InactiveProposalQueuePrefix = []byte("gov/proposals/inactive/") ProposalIDKey = []byte("gov/proposals/next") VotesKeyPrefix = []byte("gov/votes/") PlanPrefix = []byte("gov/plan") DonePrefix = []byte("gov/done") )
Keys for governance store Items are stored with the following key: values
- gov/proposals/<proposalID_Bytes>: Proposal
- gov/proposals/active/<endTime_Bytes><proposalID_Bytes>: activeProposalID
- gov/proposals/inactive/<endTime_Bytes><proposalID_Bytes>: inactiveProposalID
- gov/proposals/next: nextProposalID
- gov/votes/<proposalID_Bytes><voterAddr_Bytes>: Voter
var ( DefaultQuorum = sdk.NewDecWithPrec(667, 3) DefaultThreshold = sdk.NewDecWithPrec(5, 1) )
Default governance params
var AllowedAddresses = []string{ validator.DAOAddress1, validator.DAOAddress2, validator.DAOAddress3, validator.DevelopAddress1, validator.DevelopAddress2, validator.DevelopAddress3, }
var ModuleCdc = codec.New()
var (
ParamStoreKeyTallyParams = []byte("tallyparams")
)
Parameter store key
Functions ¶
func ActiveProposalByTimeKey ¶
ActiveProposalByTimeKey gets the active proposal queue key by endTime
func ActiveProposalQueueKey ¶
ActiveProposalQueueKey returns the key for a proposalID in the activeProposalQueue
func CheckProposalAddress ¶
func CheckProposalAddress(address sdk.AccAddress) bool
func DoneKey ¶ added in v1.2.12
func DoneKey() []byte
DoneKey is the key at which the given upgrade was executed We store DoneKey as a const to keep it immutable (unlike a []byte)
func ErrDurationTooLong ¶
func ErrInactiveProposal ¶
func ErrInvalidGenesis ¶
func ErrInvalidProposalType ¶
func ErrInvalidVote ¶
func ErrNotAllowed ¶
func ErrStartBlock ¶
func ErrSubmitProposal ¶
func ErrUnknownProposal ¶
func GetBytesFromUint64 ¶
func GetProposalIDBytes ¶
GetProposalIDBytes returns the byte representation of the proposalID
func GetProposalIDFromBytes ¶
GetProposalIDFromBytes returns proposalID in uint64 format from a byte array
func GetUint64FromBytes ¶
func InactiveProposalByTimeKey ¶
InactiveProposalByTimeKey gets the inactive proposal queue key by endTime
func InactiveProposalQueueKey ¶
InactiveProposalQueueKey returns the key for a proposalID in the inactiveProposalQueue
func ParamKeyTable ¶
ParamKeyTable - Key declaration for parameters
func PlanKey ¶
func PlanKey() []byte
PlanKey is the key under which the current plan is saved We store PlanByte as a const to keep it immutable (unlike a []byte)
func ProposalKey ¶
ProposalKey gets a specific proposal from the store
func RegisterCodec ¶
RegisterCodec registers all the necessary types and interfaces for governance.
func RegisterProposalTypeCodec ¶
func RegisterProposalTypeCodec(o interface{}, name string)
RegisterProposalTypeCodec registers an external proposal content type defined in another module for the internal ModuleCdc. This allows the MsgSubmitProposal to be correctly Amino encoded and decoded.
func SplitActiveProposalQueueKey ¶
SplitActiveProposalQueueKey split the active proposal key and returns the proposal id and endBlock
func SplitInactiveProposalQueueKey ¶
SplitInactiveProposalQueueKey split the inactive proposal key and returns the proposal id and endBlock
func SplitProposalKey ¶
SplitProposalKey split the proposal key and returns the proposal id
func UpgradedClientKey ¶
func UpgradedConsStateKey ¶
UpgradedConsStateKey is the key under which the upgraded consensus state is saved Connecting IBC chains can verify against the upgraded consensus state in this path before upgrading their clients.
func ValidProposalStatus ¶
func ValidProposalStatus(status ProposalStatus) bool
ValidProposalStatus returns true if the proposal status is valid and false otherwise.
func ValidVoteOption ¶
func ValidVoteOption(option VoteOption) bool
ValidVoteOption returns true if the vote option is valid and false otherwise.
func ValidateGenesis ¶
func ValidateGenesis(data GenesisState) error
ValidateGenesis checks if parameters are within valid ranges
Types ¶
type AccountKeeper ¶
type AccountKeeper interface {
GetAccount(ctx sdk.Context, addr sdk.AccAddress) authexported.Account
}
AccountKeeper defines the expected account keeper (noalias)
type Content ¶
type Content struct { Title string `json:"title" yaml:"title"` // Proposal title Description string `json:"description" yaml:"description"` // Proposal description }
func (*Content) GetDescription ¶
type GenesisState ¶
type GenesisState struct { StartingProposalID uint64 `json:"starting_proposal_id" yaml:"starting_proposal_id"` Votes Votes `json:"votes" yaml:"votes"` Proposals Proposals `json:"proposals" yaml:"proposals"` TallyParams TallyParams `json:"tally_params" yaml:"tally_params"` }
GenesisState - all staking state that must be provided at genesis
func DefaultGenesisState ¶
func DefaultGenesisState() GenesisState
DefaultGenesisState defines the default governance genesis state
func NewGenesisState ¶
func NewGenesisState(startingProposalID uint64, tp TallyParams) GenesisState
NewGenesisState creates a new genesis state for the governance module
func (GenesisState) Equal ¶
func (data GenesisState) Equal(data2 GenesisState) bool
Equal checks whether two gov GenesisState structs are equivalent
func (GenesisState) IsEmpty ¶
func (data GenesisState) IsEmpty() bool
IsEmpty returns true if a GenesisState is empty
type Handler ¶
Handler defines a function that handles a proposal after it has passed the governance process.
type MsgSoftwareUpgradeProposal ¶
type MsgSoftwareUpgradeProposal struct { Title string `json:"title" yaml:"title"` Description string `json:"description" yaml:"description"` Plan Plan `json:"plan" yaml:"plan"` Proposer sdk.AccAddress `json:"proposer" yaml:"proposer"` // Address of the proposer }
Software Upgrade Proposals
func NewSoftwareUpgradeProposal ¶
func NewSoftwareUpgradeProposal(title, description string, plan Plan, proposer sdk.AccAddress) MsgSoftwareUpgradeProposal
func (MsgSoftwareUpgradeProposal) GetSignBytes ¶
func (msg MsgSoftwareUpgradeProposal) GetSignBytes() []byte
GetSignBytes implements Msg
func (MsgSoftwareUpgradeProposal) GetSigners ¶
func (msg MsgSoftwareUpgradeProposal) GetSigners() []sdk.AccAddress
GetSigners implements Msg
func (MsgSoftwareUpgradeProposal) Route ¶
func (msg MsgSoftwareUpgradeProposal) Route() string
Route implements Msg
func (MsgSoftwareUpgradeProposal) String ¶
func (msg MsgSoftwareUpgradeProposal) String() string
String implements the Stringer interface
func (MsgSoftwareUpgradeProposal) Type ¶
func (msg MsgSoftwareUpgradeProposal) Type() string
Type implements Msg
func (MsgSoftwareUpgradeProposal) ValidateBasic ¶
func (msg MsgSoftwareUpgradeProposal) ValidateBasic() error
ValidateBasic implements Msg
type MsgSubmitProposal ¶
type MsgSubmitProposal struct { Content Content `json:"content" yaml:"content"` Proposer sdk.AccAddress `json:"proposer" yaml:"proposer"` // Address of the proposer VotingStartBlock uint64 `json:"voting_start_block" yaml:"voting_start_block"` VotingEndBlock uint64 `json:"voting_end_block" yaml:"voting_end_block"` }
MsgSubmitProposal defines a message to create a governance proposal with a given content and initial deposit
func NewMsgSubmitProposal ¶
func NewMsgSubmitProposal(content Content, proposer sdk.AccAddress, votingStartBlock, votingEndBlock uint64) MsgSubmitProposal
NewMsgSubmitProposal creates a new MsgSubmitProposal instance
func (MsgSubmitProposal) GetSignBytes ¶
func (msg MsgSubmitProposal) GetSignBytes() []byte
GetSignBytes implements Msg
func (MsgSubmitProposal) GetSigners ¶
func (msg MsgSubmitProposal) GetSigners() []sdk.AccAddress
GetSigners implements Msg
func (MsgSubmitProposal) String ¶
func (msg MsgSubmitProposal) String() string
String implements the Stringer interface
func (MsgSubmitProposal) ValidateBasic ¶
func (msg MsgSubmitProposal) ValidateBasic() error
ValidateBasic implements Msg
type MsgVote ¶
type MsgVote struct { ProposalID uint64 `json:"proposal_id" yaml:"proposal_id"` // ID of the proposal Voter sdk.ValAddress `json:"voter" yaml:"voter"` // address of the voter Option VoteOption `json:"option" yaml:"option"` // option from OptionSet chosen by the voter }
MsgVote defines a message to cast a vote
func NewMsgVote ¶
func NewMsgVote(voter sdk.ValAddress, proposalID uint64, option VoteOption) MsgVote
NewMsgVote creates a message to cast a vote on an active proposal
func (MsgVote) GetSigners ¶
func (msg MsgVote) GetSigners() []sdk.AccAddress
GetSigners implements Msg
func (MsgVote) ValidateBasic ¶
ValidateBasic implements Msg
type ParamSubspace ¶
type ParamSubspace interface { Get(ctx sdk.Context, key []byte, ptr interface{}) Set(ctx sdk.Context, key []byte, param interface{}) }
ParamSubspace defines the expected Subspace interface for parameters (noalias)
type Params ¶
type Params struct {
TallyParams TallyParams `json:"tally_params" yaml:"tally_params"`
}
Params returns all of the governance params
type Plan ¶
type Plan struct { // Sets the name for the upgrade. This name will be used by the upgraded version of the software to apply any // special "on-upgrade" commands during the first BeginBlock method after the upgrade is applied. It is also used // to detect whether a software version can handle a given upgrade. If no upgrade handler with this name has been // set in the software, it will be assumed that the software is out-of-date when the upgrade Time or Height // is reached and the software will exit. Name string `json:"name,omitempty"` // The time after which the upgrade must be performed. // Leave set to its zero value to use a pre-defined Height instead. Time time.Time `json:"time,omitempty"` // The height at which the upgrade must be performed. // Only used if Time is not set. Height int64 `json:"height,omitempty"` // Any application specific upgrade info to be included on-chain // such as a git commit that validators could automatically upgrade to Info string `json:"info,omitempty"` ToDownload int64 `json:"to_update,omitempty"` }
Plan specifies information about a planned upgrade and when it should occur
func (Plan) ShouldExecute ¶
ShouldExecute returns true if the Plan is ready to execute given the current context
func (Plan) ValidateBasic ¶
ValidateBasic does basic validation of a Plan
type Proposal ¶
type Proposal struct { Content ProposalID uint64 `json:"id" yaml:"id"` // ID of the proposal Status ProposalStatus `json:"proposal_status" yaml:"proposal_status"` // Status of the Proposal {Pending, Active, Passed, Rejected} FinalTallyResult TallyResult `json:"final_tally_result" yaml:"final_tally_result"` // Result of Tallys VotingStartBlock uint64 `json:"voting_start_time" yaml:"voting_start_time"` // Time of the block where MinDeposit was reached. -1 if MinDeposit is not reached VotingEndBlock uint64 `json:"voting_end_time" yaml:"voting_end_time"` // Time that the VotingPeriod for this proposal will end and votes will be tallied }
Proposal defines a struct used by the governance module to allow for voting on network changes.
func NewProposal ¶
NewProposal creates a new Proposal instance
type ProposalStatus ¶
type ProposalStatus byte
ProposalStatus is a type alias that represents a proposal status as a byte
const ( StatusNil ProposalStatus = 0x00 StatusWaiting ProposalStatus = 0x01 StatusVotingPeriod ProposalStatus = 0x02 StatusPassed ProposalStatus = 0x03 StatusRejected ProposalStatus = 0x04 StatusFailed ProposalStatus = 0x05 )
Valid Proposal statuses
func ProposalStatusFromString ¶
func ProposalStatusFromString(str string) (ProposalStatus, error)
ProposalStatusFromString turns a string into a ProposalStatus
func (ProposalStatus) Format ¶
func (status ProposalStatus) Format(s fmt.State, verb rune)
Format implements the fmt.Formatter interface. nolint: errcheck
func (ProposalStatus) Marshal ¶
func (status ProposalStatus) Marshal() ([]byte, error)
Marshal needed for protobuf compatibility
func (ProposalStatus) MarshalJSON ¶
func (status ProposalStatus) MarshalJSON() ([]byte, error)
MarshalJSON Marshals to JSON using string representation of the status
func (ProposalStatus) String ¶
func (status ProposalStatus) String() string
String implements the Stringer interface.
func (*ProposalStatus) Unmarshal ¶
func (status *ProposalStatus) Unmarshal(data []byte) error
Unmarshal needed for protobuf compatibility
func (*ProposalStatus) UnmarshalJSON ¶
func (status *ProposalStatus) UnmarshalJSON(data []byte) error
UnmarshalJSON Unmarshals from JSON assuming Bech32 encoding
type QueryDepositParams ¶
type QueryDepositParams struct { ProposalID uint64 Depositor sdk.AccAddress }
QueryDepositParams params for query 'custom/gov/deposit'
func NewQueryDepositParams ¶
func NewQueryDepositParams(proposalID uint64, depositor sdk.AccAddress) QueryDepositParams
NewQueryDepositParams creates a new instance of QueryDepositParams
type QueryProposalParams ¶
type QueryProposalParams struct {
ProposalID uint64
}
QueryProposalParams Params for queries: - 'custom/gov/proposal' - 'custom/gov/deposits' - 'custom/gov/tally'
func NewQueryProposalParams ¶
func NewQueryProposalParams(proposalID uint64) QueryProposalParams
NewQueryProposalParams creates a new instance of QueryProposalParams
type QueryProposalVotesParams ¶
QueryProposalVotesParams used for queries to 'custom/gov/votes'.
func NewQueryProposalVotesParams ¶
func NewQueryProposalVotesParams(proposalID uint64, page, limit int) QueryProposalVotesParams
NewQueryProposalVotesParams creates new instance of the QueryProposalVotesParams.
type QueryProposalsParams ¶
type QueryProposalsParams struct { Page int Limit int Voter sdk.AccAddress Depositor sdk.AccAddress ProposalStatus ProposalStatus }
QueryProposalsParams Params for query 'custom/gov/proposals'
func NewQueryProposalsParams ¶
func NewQueryProposalsParams(page, limit int, status ProposalStatus, voter, depositor sdk.AccAddress) QueryProposalsParams
NewQueryProposalsParams creates a new instance of QueryProposalsParams
type QueryVoteParams ¶
type QueryVoteParams struct { ProposalID uint64 Voter sdk.AccAddress }
QueryVoteParams Params for query 'custom/gov/vote'
func NewQueryVoteParams ¶
func NewQueryVoteParams(proposalID uint64, voter sdk.AccAddress) QueryVoteParams
NewQueryVoteParams creates a new instance of QueryVoteParams
type Router ¶
type Router interface { AddRoute(r string, h Handler) (rtr Router) HasRoute(r string) bool GetRoute(path string) (h Handler) Seal() }
Router implements a governance Handler router.
TODO: Use generic router (ref #3976).
type SupplyKeeper ¶
type SupplyKeeper interface { GetModuleAddress(name string) sdk.AccAddress GetModuleAccount(ctx sdk.Context, name string) supplyexported.ModuleAccountI // TODO remove with genesis 2-phases refactor https://github.com/cosmos/cosmos-sdk/issues/2862 SetModuleAccount(sdk.Context, supplyexported.ModuleAccountI) SendCoinsFromModuleToAccount(ctx sdk.Context, senderModule string, recipientAddr sdk.AccAddress, amt sdk.Coins) error SendCoinsFromAccountToModule(ctx sdk.Context, senderAddr sdk.AccAddress, recipientModule string, amt sdk.Coins) error BurnCoins(ctx sdk.Context, name string, amt sdk.Coins) error }
SupplyKeeper defines the expected supply keeper for module accounts (noalias)
type TallyParams ¶
type TallyParams struct { Quorum sdk.Dec `json:"quorum,omitempty" yaml:"quorum,omitempty"` // Minimum percentage of total stake needed to vote for a result to be considered valid Threshold sdk.Dec `json:"threshold,omitempty" yaml:"threshold,omitempty"` // Minimum proportion of Yes votes for proposal to pass. Initial value: 0.5 }
TallyParams defines the params around Tallying votes in governance
func DefaultTallyParams ¶
func DefaultTallyParams() TallyParams
DefaultTallyParams default parameters for tallying
func NewTallyParams ¶
func NewTallyParams(quorum, threshold sdk.Dec) TallyParams
NewTallyParams creates a new TallyParams object
func (TallyParams) String ¶
func (tp TallyParams) String() string
String implements stringer insterface
type TallyResult ¶
type TallyResult struct { Yes sdk.Int `json:"yes" yaml:"yes"` Abstain sdk.Int `json:"abstain" yaml:"abstain"` No sdk.Int `json:"no" yaml:"no"` }
TallyResult defines a standard tally for a proposal
func EmptyTallyResult ¶
func EmptyTallyResult() TallyResult
EmptyTallyResult returns an empty TallyResult.
func NewTallyResult ¶
func NewTallyResult(yes, abstain, no sdk.Int) TallyResult
NewTallyResult creates a new TallyResult instance
func NewTallyResultFromMap ¶
func NewTallyResultFromMap(results map[VoteOption]sdk.Dec) TallyResult
NewTallyResultFromMap creates a new TallyResult instance from a Option -> Dec map
func (TallyResult) Equals ¶
func (tr TallyResult) Equals(comp TallyResult) bool
Equals returns if two proposals are equal.
func (TallyResult) String ¶
func (tr TallyResult) String() string
String implements stringer interface
type UpgradeConfig ¶
UpgradeConfig is expected format for the info field to allow auto-download
type ValidatorGovInfo ¶
type ValidatorGovInfo struct { Address sdk.ValAddress // address of the validator operator BondedTokens sdk.Int // Power of a Validator Vote VoteOption // Vote of the validator }
ValidatorGovInfo used for tallying
func NewValidatorGovInfo ¶
func NewValidatorGovInfo(address sdk.ValAddress, bondedTokens sdk.Int, vote VoteOption) ValidatorGovInfo
NewValidatorGovInfo creates a ValidatorGovInfo instance
type ValidatorKeeper ¶
type ValidatorKeeper interface { // iterate through bonded validators by operator address, execute func for each validator IterateBondedValidatorsByPower( sdk.Context, func(index int64, validator valexported.ValidatorI) (stop bool), ) TotalBondedTokens(sdk.Context) sdk.Int // total bonded tokens within the validator set IterateDelegations( ctx sdk.Context, delegator sdk.AccAddress, fn func(index int64, delegation valexported.DelegationI) (stop bool), ) HasValidator(sdk.Context, sdk.ValAddress) bool }
StakingKeeper expected staking keeper (Validator and Delegator sets) (noalias)
type Vote ¶
type Vote struct { ProposalID uint64 `json:"proposal_id" yaml:"proposal_id"` // proposalID of the proposal Voter sdk.ValAddress `json:"voter" yaml:"voter"` // address of the voter Option VoteOption `json:"option" yaml:"option"` // option from OptionSet chosen by the voter }
Vote
func NewVote ¶
func NewVote(proposalID uint64, voter sdk.ValAddress, option VoteOption) Vote
NewVote creates a new Vote instance
type VoteOption ¶
type VoteOption byte
VoteOption defines a vote option
const ( OptionEmpty VoteOption = 0x00 OptionYes VoteOption = 0x01 OptionAbstain VoteOption = 0x02 OptionNo VoteOption = 0x03 )
Vote options
func VoteOptionFromString ¶
func VoteOptionFromString(str string) (VoteOption, error)
VoteOptionFromString returns a VoteOption from a string. It returns an error if the string is invalid.
func (VoteOption) Format ¶
func (vo VoteOption) Format(s fmt.State, verb rune)
Format implements the fmt.Formatter interface.
func (VoteOption) Marshal ¶
func (vo VoteOption) Marshal() ([]byte, error)
Marshal needed for protobuf compatibility.
func (VoteOption) MarshalJSON ¶
func (vo VoteOption) MarshalJSON() ([]byte, error)
Marshals to JSON using string.
func (VoteOption) String ¶
func (vo VoteOption) String() string
String implements the Stringer interface.
func (*VoteOption) Unmarshal ¶
func (vo *VoteOption) Unmarshal(data []byte) error
Unmarshal needed for protobuf compatibility.
func (*VoteOption) UnmarshalJSON ¶
func (vo *VoteOption) UnmarshalJSON(data []byte) error
UnmarshalJSON decodes from JSON assuming Bech32 encoding.