Documentation ¶
Index ¶
- func HandleBlock(cfg juno.Config, block *tmctypes.ResultBlock, vals *tmctypes.ResultValidators, ...) error
- func HandleGenesis(doc *tmtypes.GenesisDoc, appState map[string]json.RawMessage, ...) error
- func HandleMsg(tx *juno.Tx, index int, msg sdk.Msg, stakingClient stakingtypes.QueryClient, ...) error
- func RegisterPeriodicOps(scheduler *gocron.Scheduler, stakingClient stakingtypes.QueryClient, ...) error
- type Module
- func (m *Module) HandleBlock(block *tmctypes.ResultBlock, _ []*juno.Tx, vals *tmctypes.ResultValidators) error
- func (m *Module) HandleGenesis(doc *tmtypes.GenesisDoc, appState map[string]json.RawMessage) error
- func (m *Module) HandleMsg(index int, msg sdk.Msg, tx *juno.Tx) error
- func (m *Module) Name() string
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func HandleBlock ¶
func HandleBlock( cfg juno.Config, block *tmctypes.ResultBlock, vals *tmctypes.ResultValidators, stakingClient stakingtypes.QueryClient, bankClient banktypes.QueryClient, distrClient distrtypes.QueryClient, cdc codec.Marshaler, db *database.Db, ) error
HandleBlock represents a method that is called each time a new block is created
func HandleGenesis ¶
func HandleGenesis( doc *tmtypes.GenesisDoc, appState map[string]json.RawMessage, cdc codec.Marshaler, db *database.Db, ) error
func HandleMsg ¶
func HandleMsg( tx *juno.Tx, index int, msg sdk.Msg, stakingClient stakingtypes.QueryClient, distrClient distrtypes.QueryClient, cdc codec.Marshaler, db *database.Db, ) error
HandleMsg allows to handle the different utils related to the staking module
func RegisterPeriodicOps ¶
func RegisterPeriodicOps( scheduler *gocron.Scheduler, stakingClient stakingtypes.QueryClient, cdc codec.Marshaler, db *database.Db, ) error
RegisterPeriodicOps registers the additional utils that periodically run
Types ¶
type Module ¶
type Module struct {
// contains filtered or unexported fields
}
Module represents the x/staking module
func NewModule ¶
func NewModule( cfg juno.Config, bankClient banktypes.QueryClient, stakingClient stakingtypes.QueryClient, distrClient distrtypes.QueryClient, encodingConfig *params.EncodingConfig, db *database.Db, ) *Module
NewModule returns a new Module instance
func (*Module) HandleBlock ¶
func (m *Module) HandleBlock(block *tmctypes.ResultBlock, _ []*juno.Tx, vals *tmctypes.ResultValidators) error
HandleBlock implements BlockModule
func (*Module) HandleGenesis ¶
func (m *Module) HandleGenesis(doc *tmtypes.GenesisDoc, appState map[string]json.RawMessage) error
HandleGenesis implements GenesisModule
Source Files ¶
Click to show internal directories.
Click to hide internal directories.