domain

package
v0.4.2 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jun 15, 2020 License: Apache-2.0 Imports: 18 Imported by: 0

Documentation

Index

Constants

View Source
const (
	// ModuleNames aliases types.ModuleName
	ModuleName = types.ModuleName
	// DomainStoreKey aliases types.DomainStoreKey
	DomainStoreKey = types.DomainStoreKey
	// AccountStoreKey aliases types.AccountStoreKey
	AccountStoreKey = types.AccountStoreKey
	// IndexStoreKey aliases types.IndexStoreKey
	IndexStoreKey = types.IndexStoreKey
	// QuerierRoute aliases types.QuerierRoute
	QuerierRoute = types.QuerierRoute
	// RouterKey aliases types.RouterKey
	RouterKey = types.RouterKey
	// DefaultParamSpace defines domain module default param space key
	DefaultParamSpace = types.DefaultParamSpace
)

aliasing for naming constants

Variables

View Source
var NewKeeper = keeper.NewKeeper

aliasing for funcs

Functions

func InitGenesis

func InitGenesis(ctx sdk.Context, keeper Keeper, data GenesisState)

InitGenesis builds a state from GenesisState

func NewHandler

func NewHandler(k Keeper) sdk.Handler

NewHandler builds the tx requests handler for the domain module

func ValidateGenesis

func ValidateGenesis(data GenesisState) error

ValidateGenesis validates a genesis state checking for domain validity and no domain name repetitions

Types

type AppModule

type AppModule struct {
	AppModuleBasic
	// contains filtered or unexported fields
}

func NewAppModule

func NewAppModule(k Keeper) AppModule

NewAppModule creates a new AppModule Object

func (AppModule) BeginBlock

func (am AppModule) BeginBlock(_ sdk.Context, _ abci.RequestBeginBlock)

func (AppModule) EndBlock

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) Name

func (AppModule) Name() string

func (AppModule) NewHandler

func (am AppModule) NewHandler() sdk.Handler

func (AppModule) NewQuerierHandler

func (am AppModule) NewQuerierHandler() sdk.Querier

func (AppModule) QuerierRoute

func (am AppModule) QuerierRoute() string

func (AppModule) RegisterInvariants

func (am AppModule) RegisterInvariants(ir sdk.InvariantRegistry)

func (AppModule) Route

func (am AppModule) Route() string

type AppModuleBasic

type AppModuleBasic struct{}

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 GenesisState

type GenesisState struct {
	// DomainRecords contains the records of registered domains
	Domains []types.Domain `json:"domains"`
	// AccountRecords contains the records of registered accounts
	Accounts []types.Account `json:"accounts"`
}

GenesisState represents the state of the domain module

func DefaultGenesisState

func DefaultGenesisState() GenesisState

DefaultGenesisState creates an empty genesis state for the domain module

func ExportGenesis

func ExportGenesis(ctx sdk.Context, k Keeper) GenesisState

ExportGenesis saves the state of the domain module

func NewGenesisState

func NewGenesisState(domains []types.Domain, accounts []types.Account) GenesisState

NewGenesisState builds a genesis state including the domains provided

type Keeper

type Keeper = keeper.Keeper

aliasing for types

Directories

Path Synopsis
client
cli
controllers

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL