keeper

package
v2.10.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: May 22, 2024 License: Apache-2.0 Imports: 28 Imported by: 0

Documentation

Overview

Package keeper specifies the keeper for the gov module.

Index

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) 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 NewQuerier

func NewQuerier(keeper Keeper, legacyQuerierCdc *codec.LegacyAmino) sdk.Querier

NewQuerier creates a new gov Querier instance.

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 setup 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.

func Tally

func Tally(ctx sdk.Context, k Keeper, 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.

Types

type Keeper

type Keeper struct {
	govkeeper.Keeper

	// the reference to get information about certifiers
	CertKeeper types.CertKeeper

	// the reference to get claim proposal parameters
	ShieldKeeper types.ShieldKeeper
	// contains filtered or unexported fields
}

Keeper implements keeper for the governance module.

func NewKeeper

func NewKeeper(
	cdc codec.BinaryCodec, key storetypes.StoreKey, paramSpace types.ParamSubspace, bankKeeper govtypes.BankKeeper,
	stakingKeeper types.StakingKeeper, certKeeper types.CertKeeper, shieldKeeper types.ShieldKeeper,
	authKeeper govtypes.AccountKeeper, legacyRouter v1beta1.Router, router *baseapp.MsgServiceRouter, config govtypes.Config,
) 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) ActivateVotingPeriodCustom added in v2.7.0

func (k Keeper) ActivateVotingPeriodCustom(ctx sdk.Context, c govtypesv1beta1.Content, proposal govtypesv1.Proposal, addr sdk.AccAddress) bool

ActivateVotingPeriodCustom switches proposals to voting period for customization.

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

CertVoted returns certifier voting

func (Keeper) CertifierVoteIsRequired added in v2.10.0

func (k Keeper) CertifierVoteIsRequired(proposal govtypesv1.Proposal) bool

func (Keeper) DeleteAllVotes

func (k Keeper) DeleteAllVotes(ctx sdk.Context, proposalID uint64)

DeleteAllVotes deletes all votes for a proposal.

func (Keeper) GetCertifierVoted added in v2.7.0

func (k Keeper) GetCertifierVoted(ctx sdk.Context, proposalID uint64) bool

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) 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) IsCertifiedIdentity

func (k Keeper) IsCertifiedIdentity(ctx sdk.Context, addr sdk.AccAddress) bool

IsCertifiedIdentity checks if the input address is a certified identity.

func (Keeper) IsCertifier

func (k Keeper) IsCertifier(ctx sdk.Context, addr sdk.AccAddress) bool

IsCertifier checks if the input address is a certifier.

func (Keeper) Params

Params queries all params

func (Keeper) SetCertVote added in v2.7.0

func (k Keeper) SetCertVote(ctx sdk.Context, proposalID uint64)

SetCertVote sets a cert vote to the gov store

func (Keeper) SetCertifierVoted added in v2.7.0

func (k Keeper) SetCertifierVoted(ctx sdk.Context, proposalID uint64)

func (Keeper) SetCustomParams added in v2.7.0

func (k Keeper) SetCustomParams(ctx sdk.Context, customAddParams typesv1.CustomParams)

SetCustomParams sets parameters space for custom.

func (Keeper) Tally

func (k Keeper) Tally(ctx sdk.Context, proposal v1.Proposal) (passes bool, burnDeposits bool, tallyResults v1.TallyResult)

Tally counts the votes and returns whether the proposal passes and/or if tokens should be burned.

func (Keeper) TotalBondedByCertifiedIdentities

func (k Keeper) TotalBondedByCertifiedIdentities(ctx sdk.Context) math.Int

TotalBondedByCertifiedIdentities calculates the amount of total bonded stakes by certified identities.

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) Migrator

NewMigrator returns a new Migrator.

func (Migrator) Migrate1to2

func (m Migrator) Migrate1to2(ctx sdk.Context) error

Migrate1to2 migrates from version 1 to 2.

func (Migrator) Migrate2to3 added in v2.7.0

func (m Migrator) Migrate2to3(ctx sdk.Context) error

Migrate2to3 migrates from version 2 to 3.

func (Migrator) Migrate3to4 added in v2.10.0

func (m Migrator) Migrate3to4(ctx sdk.Context) error

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.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL