Documentation ¶
Index ¶
- Constants
- type AppModule
- type AppModuleBasic
- func (a AppModuleBasic) GetQueryCmd() *cobra.Command
- func (a AppModuleBasic) GetTxCmd() *cobra.Command
- func (a AppModuleBasic) Name() string
- func (a AppModuleBasic) RegisterGRPCGatewayRoutes(_ client.Context, _ *runtime.ServeMux)
- func (a AppModuleBasic) RegisterInterfaces(_ cdctypes.InterfaceRegistry)
- func (a AppModuleBasic) RegisterLegacyAminoCodec(_ *codec.LegacyAmino)
- type Keeper
Constants ¶
View Source
const (
ConsensusVersion = 1
)
View Source
const (
ModuleName = "timerstore"
)
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type AppModule ¶
type AppModule struct { AppModuleBasic // contains filtered or unexported fields }
func NewAppModule ¶
func (AppModule) BeginBlock ¶
func (a AppModule) BeginBlock(context sdk.Context, _ abci.RequestBeginBlock)
func (AppModule) ConsensusVersion ¶
type AppModuleBasic ¶
type AppModuleBasic struct{}
AppModuleBasic implements the module.AppModuleBasic interface for the downtime module.
func (AppModuleBasic) GetQueryCmd ¶
func (a AppModuleBasic) GetQueryCmd() *cobra.Command
func (AppModuleBasic) GetTxCmd ¶
func (a AppModuleBasic) GetTxCmd() *cobra.Command
func (AppModuleBasic) Name ¶
func (a AppModuleBasic) Name() string
func (AppModuleBasic) RegisterGRPCGatewayRoutes ¶
func (a AppModuleBasic) RegisterGRPCGatewayRoutes(_ client.Context, _ *runtime.ServeMux)
func (AppModuleBasic) RegisterInterfaces ¶
func (a AppModuleBasic) RegisterInterfaces(_ cdctypes.InterfaceRegistry)
func (AppModuleBasic) RegisterLegacyAminoCodec ¶
func (a AppModuleBasic) RegisterLegacyAminoCodec(_ *codec.LegacyAmino)
type Keeper ¶ added in v0.24.1
type Keeper struct {
// contains filtered or unexported fields
}
Keeper is the timerstore keeper. The keeper retains all the fixation stores used by modules, it also manages their lifecycle.
func NewKeeper ¶ added in v0.24.1
func NewKeeper(cdc codec.BinaryCodec) *Keeper
func (*Keeper) BeginBlock ¶ added in v0.24.1
func (*Keeper) NewTimerStore ¶ added in v0.24.1
func (k *Keeper) NewTimerStore(storeKey storetypes.StoreKey, prefix string) *common.TimerStore
Click to show internal directories.
Click to hide internal directories.