Documentation ¶
Overview ¶
Package keeper specifies the keeper for the gov module.
Index ¶
- func NewLegacyMsgServerImpl(govAcct string, v1Server govtypesv1.MsgServer, k Keeper) govtypesv1beta1.MsgServer
- func NewMsgServerImpl(keeper Keeper) govtypesv1.MsgServer
- func SecurityTally(ctx sdk.Context, k Keeper, proposal govtypesv1.Proposal) (bool, bool, govtypesv1.TallyResult)
- type Keeper
- func (k Keeper) ActivateVotingPeriod(ctx sdk.Context, proposal govtypesv1.Proposal)
- func (k Keeper) AddCertifierVote(ctx sdk.Context, proposalID uint64, voterAddr sdk.AccAddress, ...) error
- func (k Keeper) AddVote(ctx sdk.Context, proposalID uint64, voterAddr sdk.AccAddress, ...) error
- func (k Keeper) CertVoted(c context.Context, req *typesv1.QueryCertVotedRequest) (*typesv1.QueryCertVotedResponse, error)
- func (k Keeper) CertifierVoteIsRequired(proposal govtypesv1.Proposal) bool
- func (k Keeper) DeleteAllVotes(ctx sdk.Context, proposalID uint64)
- func (k Keeper) GetCertifierVoted(ctx sdk.Context, proposalID uint64) bool
- func (k Keeper) GetCustomParams(ctx sdk.Context) (customParams typesv1.CustomParams)
- func (k Keeper) GetVotesIteratorPaginated(ctx sdk.Context, proposalID uint64, page, limit uint) sdk.Iterator
- func (k Keeper) IsCertifier(ctx sdk.Context, addr sdk.AccAddress) bool
- func (k Keeper) Params(c context.Context, req *govtypesv1.QueryParamsRequest) (*typesv1.QueryParamsResponse, error)
- func (k Keeper) SetCertVote(ctx sdk.Context, proposalID uint64)
- func (k Keeper) SetCertifierVoted(ctx sdk.Context, proposalID uint64)
- func (k Keeper) SetCustomParams(ctx sdk.Context, customAddParams typesv1.CustomParams) error
- func (k Keeper) Tally(ctx sdk.Context, proposal govtypesv1.Proposal) (pass bool, veto bool, tallyResults govtypesv1.TallyResult)
- func (k Keeper) TotalBondedByCertifiedIdentities(ctx sdk.Context) math.Int
- type Migrator
- type TallyHelper
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func NewLegacyMsgServerImpl ¶ added in v2.10.0
func NewLegacyMsgServerImpl(govAcct string, v1Server govtypesv1.MsgServer, k Keeper) govtypesv1beta1.MsgServer
NewLegacyMsgServerImpl returns an implementation of the v1beta1 legacy MsgServer interface. It wraps around the current MsgServer
func NewMsgServerImpl ¶
func NewMsgServerImpl(keeper Keeper) govtypesv1.MsgServer
NewMsgServerImpl returns an implementation of the gov MsgServer interface for the provided Keeper.
func SecurityTally ¶
func SecurityTally(ctx sdk.Context, k Keeper, proposal govtypesv1.Proposal) (bool, bool, govtypesv1.TallyResult)
SecurityTally only gets called if the proposal is a software upgrade or certifier update and if it is the certifier round. If the proposal passes, we set up the validator voting round and the calling function EndBlocker continues to the next iteration. If it fails, the proposal is removed by the logic in EndBlocker.
Types ¶
type Keeper ¶
type Keeper struct { govkeeper.Keeper // the reference to get information about certifiers CertKeeper types.CertKeeper // contains filtered or unexported fields }
Keeper implements keeper for the governance module.
func NewKeeper ¶
func NewKeeper( cdc codec.BinaryCodec, key storetypes.StoreKey, bankKeeper govtypes.BankKeeper, stakingKeeper types.StakingKeeper, certKeeper types.CertKeeper, authKeeper govtypes.AccountKeeper, legacyRouter v1beta1.Router, router *baseapp.MsgServiceRouter, config govtypes.Config, authority string, ) Keeper
NewKeeper returns a governance keeper. It handles: - submitting governance proposals - depositing funds into proposals, and activating upon sufficient funds being deposited - users voting on proposals, with weight proportional to stake in the system - and tallying the result of the vote.
func (Keeper) ActivateVotingPeriod ¶
func (k Keeper) ActivateVotingPeriod(ctx sdk.Context, proposal govtypesv1.Proposal)
func (Keeper) AddCertifierVote ¶ added in v2.7.0
func (k Keeper) AddCertifierVote(ctx sdk.Context, proposalID uint64, voterAddr sdk.AccAddress, options govtypesv1.WeightedVoteOptions) error
AddCertifierVote add a certifier vote
func (Keeper) AddVote ¶
func (k Keeper) AddVote(ctx sdk.Context, proposalID uint64, voterAddr sdk.AccAddress, options govtypesv1.WeightedVoteOptions, metadata string) error
AddVote Adds a vote on a specific proposal.
func (Keeper) CertVoted ¶ added in v2.7.0
func (k Keeper) CertVoted(c context.Context, req *typesv1.QueryCertVotedRequest) (*typesv1.QueryCertVotedResponse, error)
CertVoted returns certifier voting
func (Keeper) CertifierVoteIsRequired ¶ added in v2.10.0
func (k Keeper) CertifierVoteIsRequired(proposal govtypesv1.Proposal) bool
func (Keeper) DeleteAllVotes ¶
DeleteAllVotes deletes all votes for a proposal.
func (Keeper) GetCertifierVoted ¶ added in v2.7.0
GetCertifierVoted determine cert vote for custom proposal types have finished
func (Keeper) GetCustomParams ¶ added in v2.7.0
func (k Keeper) GetCustomParams(ctx sdk.Context) (customParams typesv1.CustomParams)
GetCustomParams returns the current CustomParams from the global param store.
func (Keeper) GetVotesIteratorPaginated ¶
func (k Keeper) GetVotesIteratorPaginated(ctx sdk.Context, proposalID uint64, page, limit uint) sdk.Iterator
GetVotesIteratorPaginated returns an iterator to go over votes on a given proposal based on pagination parameters.
func (Keeper) IsCertifier ¶
IsCertifier checks if the input address is a certifier.
func (Keeper) Params ¶
func (k Keeper) Params(c context.Context, req *govtypesv1.QueryParamsRequest) (*typesv1.QueryParamsResponse, error)
Params queries all params
func (Keeper) SetCertVote ¶ added in v2.7.0
SetCertVote sets a cert vote to the gov store
func (Keeper) SetCertifierVoted ¶ added in v2.7.0
func (Keeper) SetCustomParams ¶ added in v2.7.0
SetCustomParams sets parameters space for custom.
func (Keeper) Tally ¶
func (k Keeper) Tally(ctx sdk.Context, proposal govtypesv1.Proposal) (pass bool, veto bool, tallyResults govtypesv1.TallyResult)
Tally counts the votes and returns whether the proposal passes and/or if tokens should be burned.
type Migrator ¶
type Migrator struct {
// contains filtered or unexported fields
}
Migrator is a struct for handling in-place store migrations.
func NewMigrator ¶
func NewMigrator(keeper Keeper, legacySubspace exported.ParamSubspace) Migrator
NewMigrator returns a new Migrator.
func (Migrator) Migrate1to2 ¶
Migrate1to2 migrates from version 1 to 2.
func (Migrator) Migrate2to3 ¶ added in v2.7.0
Migrate2to3 migrates from version 2 to 3.
func (Migrator) Migrate3to4 ¶ added in v2.10.0
Migrate3to4 migrates from version 3 to 4.
type TallyHelper ¶
type TallyHelper struct {
// contains filtered or unexported fields
}
TallyHelper reduces number of arguments passed to passAndVetoStakeResult.