Documentation ¶
Index ¶
- Variables
- func ExportGenesis(ctx context.Context) types.GenesisState
- func InitGenesis(ctx context.Context, data types.GenesisState)
- func NewAppModule() types.AppModule
- type AppModule
- func (am AppModule) BeginBlock(context.Context, abci.RequestBeginBlock)
- func (am AppModule) EndBlock(context.Context, abci.RequestEndBlock) []abci.ValidatorUpdate
- func (am AppModule) ExportGenesis(ctx context.Context) json.RawMessage
- func (am AppModule) InitGenesis(ctx context.Context, bapp *baseabci.BaseApp, data json.RawMessage) []abci.ValidatorUpdate
- func (am AppModule) RegisterInvariants(ir types.InvariantRegistry)
- func (am AppModule) RegisterQuerier(qr types.QueryRegistry)
- type AppModuleBasic
- func (amb AppModuleBasic) DefaultGenesis() json.RawMessage
- func (amb AppModuleBasic) GetMapperAndHooks() types.MapperWithHooks
- func (amb AppModuleBasic) GetQueryCmds(cdc *amino.Codec) []*cobra.Command
- func (amb AppModuleBasic) GetTxCmds(cdc *amino.Codec) []*cobra.Command
- func (amb AppModuleBasic) Name() string
- func (amb AppModuleBasic) RegisterCodec(cdc *amino.Codec)
- func (amb AppModuleBasic) RegisterRestRoutes(ctx cliContext.CLIContext, routes *mux.Router)
- func (amb AppModuleBasic) ValidateGenesis(bz json.RawMessage) error
- type GenesisState
- type Info
Constants ¶
This section is empty.
Variables ¶
View Source
var ( ModuleName = "qsc" Cdc = txs.Cdc RegisterCodec = txs.RegisterCodec NewGenesisState = types.NewGenesisState DefaultGenesis = types.DefaultGenesisState ValidateGenesis = types.ValidateGenesis MapperName = mapper.MapperName GetMapper = mapper.GetMapper NewMapper = mapper.NewMapper QueryCommands = client.QueryCommands TxCommands = client.TxCommands )
Functions ¶
func ExportGenesis ¶
func ExportGenesis(ctx context.Context) types.GenesisState
func InitGenesis ¶
func InitGenesis(ctx context.Context, data types.GenesisState)
func NewAppModule ¶ added in v0.0.6
Types ¶
type AppModule ¶ added in v0.0.6
type AppModule struct {
AppModuleBasic
}
app module
func (AppModule) BeginBlock ¶ added in v0.0.7
func (am AppModule) BeginBlock(context.Context, abci.RequestBeginBlock)
func (AppModule) EndBlock ¶ added in v0.0.7
func (am AppModule) EndBlock(context.Context, abci.RequestEndBlock) []abci.ValidatorUpdate
func (AppModule) ExportGenesis ¶ added in v0.0.6
func (am AppModule) ExportGenesis(ctx context.Context) json.RawMessage
func (AppModule) InitGenesis ¶ added in v0.0.6
func (am AppModule) InitGenesis(ctx context.Context, bapp *baseabci.BaseApp, data json.RawMessage) []abci.ValidatorUpdate
func (AppModule) RegisterInvariants ¶ added in v0.0.7
func (am AppModule) RegisterInvariants(ir types.InvariantRegistry)
func (AppModule) RegisterQuerier ¶ added in v0.0.7
func (am AppModule) RegisterQuerier(qr types.QueryRegistry)
type AppModuleBasic ¶ added in v0.0.6
type AppModuleBasic struct{}
app module basics object
func (AppModuleBasic) DefaultGenesis ¶ added in v0.0.6
func (amb AppModuleBasic) DefaultGenesis() json.RawMessage
func (AppModuleBasic) GetMapperAndHooks ¶ added in v0.0.6
func (amb AppModuleBasic) GetMapperAndHooks() types.MapperWithHooks
func (AppModuleBasic) GetQueryCmds ¶ added in v0.0.6
func (amb AppModuleBasic) GetQueryCmds(cdc *amino.Codec) []*cobra.Command
func (AppModuleBasic) GetTxCmds ¶ added in v0.0.6
func (amb AppModuleBasic) GetTxCmds(cdc *amino.Codec) []*cobra.Command
func (AppModuleBasic) Name ¶ added in v0.0.6
func (amb AppModuleBasic) Name() string
func (AppModuleBasic) RegisterCodec ¶ added in v0.0.6
func (amb AppModuleBasic) RegisterCodec(cdc *amino.Codec)
func (AppModuleBasic) RegisterRestRoutes ¶ added in v0.0.8
func (amb AppModuleBasic) RegisterRestRoutes(ctx cliContext.CLIContext, routes *mux.Router)
func (AppModuleBasic) ValidateGenesis ¶ added in v0.0.6
func (amb AppModuleBasic) ValidateGenesis(bz json.RawMessage) error
type GenesisState ¶
type GenesisState = types.GenesisState
Click to show internal directories.
Click to hide internal directories.