Documentation ¶
Index ¶
- Constants
- Variables
- func EndBlocker(ctx sdk.Context, k keeper.Keeper) []abci.ValidatorUpdate
- func InitGenesis(ctx sdk.Context, keeper Keeper, data GenesisState) []abci.ValidatorUpdate
- func NewHandler(keeper Keeper) sdk.Handler
- func ValidateGenesis(data GenesisState) error
- type AppModule
- func (am AppModule) BeginBlock(_ sdk.Context, _ abci.RequestBeginBlock)
- func (am AppModule) EndBlock(ctx sdk.Context, _ abci.RequestEndBlock) []abci.ValidatorUpdate
- func (am AppModule) ExportGenesis(ctx sdk.Context) json.RawMessage
- func (am AppModule) InitGenesis(ctx sdk.Context, data json.RawMessage) []abci.ValidatorUpdate
- func (AppModule) Name() string
- func (am AppModule) NewHandler() sdk.Handler
- func (am AppModule) NewQuerierHandler() sdk.Querier
- func (am AppModule) QuerierRoute() string
- func (am AppModule) RegisterInvariants(ir sdk.InvariantRegistry)
- func (am AppModule) Route() string
- type AppModuleBasic
- func (AppModuleBasic) DefaultGenesis() json.RawMessage
- func (AppModuleBasic) GetQueryCmd(cdc *codec.Codec) *cobra.Command
- func (AppModuleBasic) GetTxCmd(cdc *codec.Codec) *cobra.Command
- func (AppModuleBasic) Name() string
- func (AppModuleBasic) RegisterCodec(cdc *codec.Codec)
- func (AppModuleBasic) RegisterRESTRoutes(ctx context.CLIContext, rtr *mux.Router)
- func (AppModuleBasic) ValidateGenesis(bz json.RawMessage) error
- type AuthorityEntry
- type BlockChangeset
- type GenesisState
- type ID
- type Keeper
- type MsgSetRecord
- type NameAuthority
- type NameEntry
- type NameRecord
- type NameRecordEntry
- type Record
- type RecordKeeper
- type RecordObj
Constants ¶
View Source
const ( ModuleName = types.ModuleName RecordRentModuleAccountName = types.RecordRentModuleAccountName AuthorityRentModuleAccountName = types.AuthorityRentModuleAccountName RouterKey = types.RouterKey StoreKey = types.StoreKey )
Variables ¶
View Source
var ( DefaultParamspace = types.DefaultParamspace NewKeeper = keeper.NewKeeper NewRecordKeeper = keeper.NewRecordKeeper NewQuerier = keeper.NewQuerier ModuleCdc = types.ModuleCdc RegisterCodec = types.RegisterCodec RegisterInvariants = keeper.RegisterInvariants PrefixCIDToRecordIndex = keeper.PrefixCIDToRecordIndex PrefixNameAuthorityRecordIndex = keeper.PrefixNameAuthorityRecordIndex PrefixWRNToNameRecordIndex = keeper.PrefixWRNToNameRecordIndex GetBlockChangesetIndexKey = keeper.GetBlockChangesetIndexKey GetRecordIndexKey = keeper.GetRecordIndexKey GetNameAuthorityIndexKey = keeper.GetNameAuthorityIndexKey GetNameRecordIndexKey = keeper.GetNameRecordIndexKey HasRecord = keeper.HasRecord GetRecord = keeper.GetRecord ResolveWRN = keeper.ResolveWRN GetNameAuthority = keeper.GetNameAuthority GetNameRecord = keeper.GetNameRecord MatchRecords = keeper.MatchRecords KeySyncStatus = keeper.KeySyncStatus SetNameRecord = keeper.SetNameRecord AddRecordToNameMapping = keeper.AddRecordToNameMapping RemoveRecordToNameMapping = keeper.RemoveRecordToNameMapping )
Functions ¶
func EndBlocker ¶
EndBlocker is called every block, returns updated validator set.
func InitGenesis ¶
func InitGenesis(ctx sdk.Context, keeper Keeper, data GenesisState) []abci.ValidatorUpdate
func NewHandler ¶
NewHandler returns a handler for "nameservice" type messages.
func ValidateGenesis ¶
func ValidateGenesis(data GenesisState) error
Types ¶
type AppModule ¶
type AppModule struct { AppModuleBasic // contains filtered or unexported fields }
func NewAppModule ¶
NewAppModule creates a new AppModule Object
func (AppModule) BeginBlock ¶
func (am AppModule) BeginBlock(_ sdk.Context, _ abci.RequestBeginBlock)
func (AppModule) EndBlock ¶
func (am AppModule) EndBlock(ctx sdk.Context, _ abci.RequestEndBlock) []abci.ValidatorUpdate
func (AppModule) ExportGenesis ¶
func (am AppModule) ExportGenesis(ctx sdk.Context) json.RawMessage
func (AppModule) InitGenesis ¶
func (am AppModule) InitGenesis(ctx sdk.Context, data json.RawMessage) []abci.ValidatorUpdate
func (AppModule) NewHandler ¶
func (AppModule) NewQuerierHandler ¶
func (AppModule) QuerierRoute ¶
func (AppModule) RegisterInvariants ¶
func (am AppModule) RegisterInvariants(ir sdk.InvariantRegistry)
type AppModuleBasic ¶
type AppModuleBasic struct{}
app module Basics object
func (AppModuleBasic) DefaultGenesis ¶
func (AppModuleBasic) DefaultGenesis() json.RawMessage
func (AppModuleBasic) GetQueryCmd ¶
func (AppModuleBasic) GetQueryCmd(cdc *codec.Codec) *cobra.Command
Get the root query command of this module
func (AppModuleBasic) GetTxCmd ¶
func (AppModuleBasic) GetTxCmd(cdc *codec.Codec) *cobra.Command
Get the root tx command of this module
func (AppModuleBasic) Name ¶
func (AppModuleBasic) Name() string
func (AppModuleBasic) RegisterCodec ¶
func (AppModuleBasic) RegisterCodec(cdc *codec.Codec)
func (AppModuleBasic) RegisterRESTRoutes ¶
func (AppModuleBasic) RegisterRESTRoutes(ctx context.CLIContext, rtr *mux.Router)
Register rest routes
func (AppModuleBasic) ValidateGenesis ¶
func (AppModuleBasic) ValidateGenesis(bz json.RawMessage) error
Validation check of the Genesis
type AuthorityEntry ¶
type AuthorityEntry struct { Name string `json:"name" yaml:"name"` Entry types.NameAuthority `json:"record" yaml:"record"` }
type BlockChangeset ¶
type BlockChangeset = types.BlockChangeset
type GenesisState ¶
type GenesisState struct { Params types.Params `json:"params" yaml:"params"` Records []types.RecordObj `json:"records" yaml:"records"` Authorities []AuthorityEntry `json:"authorities" yaml:"authorities"` Names []NameEntry `json:"names" yaml:"names"` }
func DefaultGenesisState ¶
func DefaultGenesisState() GenesisState
func ExportGenesis ¶
func ExportGenesis(ctx sdk.Context, keeper Keeper) GenesisState
func NewGenesisState ¶
func NewGenesisState(params types.Params, records []types.RecordObj, authorities []AuthorityEntry, names []NameEntry) GenesisState
type MsgSetRecord ¶
type MsgSetRecord = types.MsgSetRecord
type NameAuthority ¶
type NameAuthority = types.NameAuthority
type NameEntry ¶
type NameEntry struct { Name string `json:"name" yaml:"name"` Entry types.NameRecord `json:"record" yaml:"record"` }
type NameRecord ¶
type NameRecord = types.NameRecord
type NameRecordEntry ¶
type NameRecordEntry = types.NameRecordEntry
type RecordKeeper ¶
type RecordKeeper = keeper.RecordKeeper
Click to show internal directories.
Click to hide internal directories.