Documentation ¶
Index ¶
- func NewMsgServerImpl(keeper Keeper) types.MsgServer
- type Keeper
- func (k Keeper) ActiveVestingsIterator(ctx sdk.Context, block uint64) sdk.Iterator
- func (k Keeper) AddToActiveVestingsQueue(ctx sdk.Context, block, index uint64)
- func (k Keeper) EndBlocker(ctx sdk.Context)
- func (k Keeper) GetAllVesting(ctx sdk.Context) (list []types.Vesting)
- func (k Keeper) GetParams(ctx sdk.Context) (params types.Params)
- func (k Keeper) GetVesting(ctx sdk.Context, index uint64) (val types.Vesting, found bool)
- func (k Keeper) IterateOverActiveVestingsQueue(ctx sdk.Context, block uint64, cb func(vesting types.Vesting) (stop bool))
- func (k Keeper) Logger(ctx sdk.Context) log.Logger
- func (k Keeper) Params(goCtx context.Context, req *types.QueryParamsRequest) (*types.QueryParamsResponse, error)
- func (k Keeper) RemoveFromActiveVestingsQueue(ctx sdk.Context, block, index uint64)
- func (k Keeper) RemoveVesting(ctx sdk.Context, index uint64)
- func (k Keeper) SetParams(ctx sdk.Context, params types.Params)
- func (k Keeper) SetVesting(ctx sdk.Context, v types.Vesting)
- func (k Keeper) Vesting(c context.Context, req *types.QueryGetVestingRequest) (*types.QueryGetVestingResponse, error)
- func (k Keeper) VestingAll(c context.Context, req *types.QueryAllVestingRequest) (*types.QueryAllVestingResponse, error)
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 storetypes.StoreKey, bankKeeper types.BankKeeper, ) *Keeper
func (Keeper) ActiveVestingsIterator ¶
func (Keeper) AddToActiveVestingsQueue ¶
func (Keeper) EndBlocker ¶
func (Keeper) GetAllVesting ¶
GetAllVesting returns all Vestings
func (Keeper) GetVesting ¶
func (Keeper) IterateOverActiveVestingsQueue ¶
func (Keeper) Params ¶
func (k Keeper) Params(goCtx context.Context, req *types.QueryParamsRequest) (*types.QueryParamsResponse, error)
func (Keeper) RemoveFromActiveVestingsQueue ¶
func (Keeper) Vesting ¶
func (k Keeper) Vesting(c context.Context, req *types.QueryGetVestingRequest) (*types.QueryGetVestingResponse, error)
func (Keeper) VestingAll ¶
func (k Keeper) VestingAll(c context.Context, req *types.QueryAllVestingRequest) (*types.QueryAllVestingResponse, error)
Click to show internal directories.
Click to hide internal directories.