Documentation ¶
Index ¶
- func NewMsgServerImpl(keeper Keeper) types.MsgServer
- type Keeper
- func (k Keeper) GetAllScheduler(ctx sdk.Context) (list []types.Scheduler)
- func (k Keeper) GetAllSequencer(ctx sdk.Context) (list []types.Sequencer)
- func (k Keeper) GetAllSequencersByRollapp(ctx sdk.Context) (list []types.SequencersByRollapp)
- func (k Keeper) GetParams(ctx sdk.Context) types.Params
- func (k Keeper) GetScheduler(ctx sdk.Context, sequencerAddress string) (val types.Scheduler, found bool)
- func (k Keeper) GetSequencer(ctx sdk.Context, sequencerAddress string) (val types.Sequencer, found bool)
- func (k Keeper) GetSequencersByRollapp(ctx sdk.Context, rollappId string) (val types.SequencersByRollapp, found bool)
- func (k Keeper) Logger(ctx sdk.Context) log.Logger
- func (k Keeper) Params(c context.Context, req *types.QueryParamsRequest) (*types.QueryParamsResponse, error)
- func (k Keeper) RemoveScheduler(ctx sdk.Context, sequencerAddress string)
- func (k Keeper) RemoveSequencer(ctx sdk.Context, sequencerAddress string)
- func (k Keeper) RemoveSequencersByRollapp(ctx sdk.Context, rollappId string)
- func (k Keeper) RollappHooks() rollapptypes.RollappHooks
- func (k Keeper) Scheduler(c context.Context, req *types.QueryGetSchedulerRequest) (*types.QueryGetSchedulerResponse, error)
- func (k Keeper) SchedulerAll(c context.Context, req *types.QueryAllSchedulerRequest) (*types.QueryAllSchedulerResponse, error)
- func (k Keeper) Sequencer(c context.Context, req *types.QueryGetSequencerRequest) (*types.QueryGetSequencerResponse, error)
- func (k Keeper) SequencerAll(c context.Context, req *types.QueryAllSequencerRequest) (*types.QueryAllSequencerResponse, error)
- func (k Keeper) SequencersByRollapp(c context.Context, req *types.QueryGetSequencersByRollappRequest) (*types.QueryGetSequencersByRollappResponse, error)
- func (k Keeper) SequencersByRollappAll(c context.Context, req *types.QueryAllSequencersByRollappRequest) (*types.QueryAllSequencersByRollappResponse, error)
- func (k Keeper) SetParams(ctx sdk.Context, params types.Params)
- func (k Keeper) SetScheduler(ctx sdk.Context, scheduler types.Scheduler)
- func (k Keeper) SetSequencer(ctx sdk.Context, sequencer types.Sequencer)
- func (k Keeper) SetSequencersByRollapp(ctx sdk.Context, sequencersByRollapp types.SequencersByRollapp)
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func NewMsgServerImpl ¶
NewMsgServerImpl returns an implementation of the MsgServer interface for the provided Keeper.
Types ¶
type Keeper ¶
type Keeper struct {
// contains filtered or unexported fields
}
func NewKeeper ¶
func NewKeeper( cdc codec.BinaryCodec, storeKey, memKey sdk.StoreKey, ps paramtypes.Subspace, bankKeeper types.BankKeeper, rollappKeeper types.RollappKeeper, isSimulation bool, ) *Keeper
func (Keeper) GetAllScheduler ¶
GetAllScheduler returns all scheduler
func (Keeper) GetAllSequencer ¶
GetAllSequencer returns all sequencer
func (Keeper) GetAllSequencersByRollapp ¶
func (k Keeper) GetAllSequencersByRollapp(ctx sdk.Context) (list []types.SequencersByRollapp)
GetAllSequencersByRollapp returns all sequencersByRollapp
func (Keeper) GetScheduler ¶
func (k Keeper) GetScheduler( ctx sdk.Context, sequencerAddress string, ) (val types.Scheduler, found bool)
GetScheduler returns a scheduler from its index
func (Keeper) GetSequencer ¶
func (k Keeper) GetSequencer( ctx sdk.Context, sequencerAddress string, ) (val types.Sequencer, found bool)
GetSequencer returns a sequencer from its index
func (Keeper) GetSequencersByRollapp ¶
func (k Keeper) GetSequencersByRollapp( ctx sdk.Context, rollappId string, ) (val types.SequencersByRollapp, found bool)
GetSequencersByRollapp returns a sequencersByRollapp from its index
func (Keeper) Params ¶
func (k Keeper) Params(c context.Context, req *types.QueryParamsRequest) (*types.QueryParamsResponse, error)
func (Keeper) RemoveScheduler ¶
RemoveScheduler removes a scheduler from the store
func (Keeper) RemoveSequencer ¶
RemoveSequencer removes a sequencer from the store
func (Keeper) RemoveSequencersByRollapp ¶
RemoveSequencersByRollapp removes a sequencersByRollapp from the store
func (Keeper) RollappHooks ¶
func (k Keeper) RollappHooks() rollapptypes.RollappHooks
Return the wrapper struct.
func (Keeper) Scheduler ¶
func (k Keeper) Scheduler(c context.Context, req *types.QueryGetSchedulerRequest) (*types.QueryGetSchedulerResponse, error)
func (Keeper) SchedulerAll ¶
func (k Keeper) SchedulerAll(c context.Context, req *types.QueryAllSchedulerRequest) (*types.QueryAllSchedulerResponse, error)
func (Keeper) Sequencer ¶
func (k Keeper) Sequencer(c context.Context, req *types.QueryGetSequencerRequest) (*types.QueryGetSequencerResponse, error)
func (Keeper) SequencerAll ¶
func (k Keeper) SequencerAll(c context.Context, req *types.QueryAllSequencerRequest) (*types.QueryAllSequencerResponse, error)
func (Keeper) SequencersByRollapp ¶
func (k Keeper) SequencersByRollapp(c context.Context, req *types.QueryGetSequencersByRollappRequest) (*types.QueryGetSequencersByRollappResponse, error)
func (Keeper) SequencersByRollappAll ¶
func (k Keeper) SequencersByRollappAll(c context.Context, req *types.QueryAllSequencersByRollappRequest) (*types.QueryAllSequencersByRollappResponse, error)
func (Keeper) SetScheduler ¶
SetScheduler set a specific scheduler in the store from its index
func (Keeper) SetSequencer ¶
SetSequencer set a specific sequencer in the store from its index
func (Keeper) SetSequencersByRollapp ¶
func (k Keeper) SetSequencersByRollapp(ctx sdk.Context, sequencersByRollapp types.SequencersByRollapp)
SetSequencersByRollapp set a specific sequencersByRollapp in the store from its index