Documentation ¶
Index ¶
- func NewMsgServerImpl(keeper types.Keeper) types.MsgServer
- type ExecuteJobWasmEvent
- type Keeper
- func (k Keeper) AddNewJob(ctx sdk.Context, job *types.Job) error
- func (k Keeper) ExecuteJob(ctx sdk.Context, jobID string, payload []byte, senderAddress sdk.AccAddress, ...) (uint64, error)
- func (k Keeper) ExecuteWasmJobEventListener() wasmutil.MessengerFnc
- func (k Keeper) GetAccount(ctx sdk.Context, addr sdk.AccAddress) authtypes.AccountI
- func (k Keeper) GetJob(ctx sdk.Context, jobID string) (*types.Job, error)
- func (k Keeper) GetParams(ctx sdk.Context) types.Params
- func (k Keeper) JobIDExists(ctx sdk.Context, jobID string) bool
- func (k Keeper) Logger(ctx sdk.Context) log.Logger
- func (k Keeper) ModuleName() string
- func (k Keeper) Params(c context.Context, req *types.QueryParamsRequest) (*types.QueryParamsResponse, error)
- func (k Keeper) PreJobExecution(ctx sdk.Context, job *types.Job) error
- func (k Keeper) QueryGetJobByID(goCtx context.Context, req *types.QueryGetJobByIDRequest) (*types.QueryGetJobByIDResponse, error)
- func (k Keeper) ScheduleNow(ctx sdk.Context, jobID string, in []byte, senderAddress sdk.AccAddress, ...) (uint64, error)
- func (k Keeper) SetParams(ctx sdk.Context, params types.Params)
- func (k Keeper) Store(ctx sdk.Context) sdk.KVStore
- func (k Keeper) UnmarshallJob(msg []byte) (ExecuteJobWasmEvent, error)
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type ExecuteJobWasmEvent ¶ added in v0.11.1
type Keeper ¶
type Keeper struct { EvmKeeper types.EvmKeeper Chains map[xchain.Type]xchain.Bridge // contains filtered or unexported fields }
func NewKeeper ¶
func NewKeeper( cdc codec.BinaryCodec, storeKey, memKey storetypes.StoreKey, ps paramtypes.Subspace, account types.AccountKeeper, evmKeeper types.EvmKeeper, chains []xchain.Bridge, ) *Keeper
func (Keeper) ExecuteJob ¶ added in v1.9.1
func (Keeper) ExecuteWasmJobEventListener ¶ added in v0.11.1
func (k Keeper) ExecuteWasmJobEventListener() wasmutil.MessengerFnc
func (Keeper) GetAccount ¶ added in v1.2.0
func (Keeper) JobIDExists ¶ added in v0.10.0
func (Keeper) ModuleName ¶ added in v0.10.2
func (Keeper) Params ¶
func (k Keeper) Params(c context.Context, req *types.QueryParamsRequest) (*types.QueryParamsResponse, error)
func (Keeper) PreJobExecution ¶ added in v1.2.0
func (Keeper) QueryGetJobByID ¶ added in v0.10.0
func (k Keeper) QueryGetJobByID(goCtx context.Context, req *types.QueryGetJobByIDRequest) (*types.QueryGetJobByIDResponse, error)
func (Keeper) ScheduleNow ¶ added in v0.10.0
func (Keeper) UnmarshallJob ¶ added in v1.0.0
func (k Keeper) UnmarshallJob(msg []byte) (ExecuteJobWasmEvent, error)
Click to show internal directories.
Click to hide internal directories.