Documentation ¶
Index ¶
- func NewMsgServerImpl(keeper Keeper) types.MsgServer
- func ResolveHNSTLD(options ...types.DNSOption) ([]*types.DNSRecord, error)
- type Keeper
- func (k Keeper) GetAllSLDRecord(ctx sdk.Context) (list []types.SLDRecord)
- func (k Keeper) GetAllTLDRecord(ctx sdk.Context) (list []types.TLDRecord)
- func (k Keeper) GetParams(ctx sdk.Context) types.Params
- func (k Keeper) GetSLDRecord(ctx sdk.Context, index string) (val types.SLDRecord, found bool)
- func (k Keeper) GetTLDRecord(ctx sdk.Context, index string) (val types.TLDRecord, found 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) RemoveSLDRecord(ctx sdk.Context, index string)
- func (k Keeper) RemoveTLDRecord(ctx sdk.Context, index string)
- func (k Keeper) SLDRecord(goCtx context.Context, req *types.QueryGetSLDRecordRequest) (*types.QueryGetSLDRecordResponse, error)
- func (k Keeper) SLDRecordAll(goCtx context.Context, req *types.QueryAllSLDRecordRequest) (*types.QueryAllSLDRecordResponse, error)
- func (k Keeper) SetParams(ctx sdk.Context, params types.Params)
- func (k Keeper) SetSLDRecord(ctx sdk.Context, sLDRecord types.SLDRecord)
- func (k Keeper) SetTLDRecord(ctx sdk.Context, tLDRecord types.TLDRecord)
- func (k Keeper) TLDRecord(goCtx context.Context, req *types.QueryGetTLDRecordRequest) (*types.QueryGetTLDRecordResponse, error)
- func (k Keeper) TLDRecordAll(goCtx context.Context, req *types.QueryAllTLDRecordRequest) (*types.QueryAllTLDRecordResponse, 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, ps paramtypes.Subspace, ) *Keeper
func (Keeper) GetAllSLDRecord ¶
GetAllSLDRecord returns all sLDRecord
func (Keeper) GetAllTLDRecord ¶
GetAllTLDRecord returns all tLDRecord
func (Keeper) GetSLDRecord ¶
GetSLDRecord returns a sLDRecord from its index
func (Keeper) GetTLDRecord ¶
GetTLDRecord returns a tLDRecord from its index
func (Keeper) Params ¶
func (k Keeper) Params(goCtx context.Context, req *types.QueryParamsRequest) (*types.QueryParamsResponse, error)
func (Keeper) RemoveSLDRecord ¶
RemoveSLDRecord removes a sLDRecord from the store
func (Keeper) RemoveTLDRecord ¶
RemoveTLDRecord removes a tLDRecord from the store
func (Keeper) SLDRecord ¶
func (k Keeper) SLDRecord(goCtx context.Context, req *types.QueryGetSLDRecordRequest) (*types.QueryGetSLDRecordResponse, error)
func (Keeper) SLDRecordAll ¶
func (k Keeper) SLDRecordAll(goCtx context.Context, req *types.QueryAllSLDRecordRequest) (*types.QueryAllSLDRecordResponse, error)
func (Keeper) SetSLDRecord ¶
SetSLDRecord set a specific sLDRecord in the store from its index
func (Keeper) SetTLDRecord ¶
SetTLDRecord set a specific tLDRecord in the store from its index
func (Keeper) TLDRecord ¶
func (k Keeper) TLDRecord(goCtx context.Context, req *types.QueryGetTLDRecordRequest) (*types.QueryGetTLDRecordResponse, error)
func (Keeper) TLDRecordAll ¶
func (k Keeper) TLDRecordAll(goCtx context.Context, req *types.QueryAllTLDRecordRequest) (*types.QueryAllTLDRecordResponse, error)
Click to show internal directories.
Click to hide internal directories.