Documentation ¶
Index ¶
- Constants
- Variables
- func DefaultGenesisState() *types.GenesisState
- func ExportGenesis(ctx sdk.Context, k keeper.IKeeper) *types.GenesisState
- func InitGenesis(ctx sdk.Context, keeper keeper.IKeeper, data *types.GenesisState) []abci.ValidatorUpdate
- func ValidateGenesis(data *types.GenesisState) error
- type AppModule
- func (am AppModule) BeginBlock(_ sdk.Context, _ abci.RequestBeginBlock)
- func (am AppModule) ConsensusVersion() uint64
- func (am AppModule) EndBlock(ctx sdk.Context, _ abci.RequestEndBlock) []abci.ValidatorUpdate
- func (am AppModule) ExportGenesis(ctx sdk.Context, cdc codec.JSONCodec) json.RawMessage
- func (am AppModule) InitGenesis(ctx sdk.Context, cdc codec.JSONCodec, data json.RawMessage) []abci.ValidatorUpdate
- func (am AppModule) LegacyQuerierHandler(_ *codec.LegacyAmino) sdk.Querier
- func (AppModule) Name() string
- func (am AppModule) QuerierRoute() string
- func (am AppModule) RegisterInvariants(ir sdk.InvariantRegistry)
- func (am AppModule) RegisterServices(cfg module.Configurator)
- func (am AppModule) Route() sdk.Route
- type AppModuleBasic
- func (AppModuleBasic) DefaultGenesis(cdc codec.JSONCodec) json.RawMessage
- func (AppModuleBasic) GetQueryClient(clientCtx client.Context) types.QueryClient
- func (AppModuleBasic) GetQueryCmd() *cobra.Command
- func (AppModuleBasic) GetTxCmd() *cobra.Command
- func (AppModuleBasic) Name() string
- func (AppModuleBasic) RegisterGRPCGatewayRoutes(clientCtx client.Context, mux *runtime.ServeMux)
- func (b AppModuleBasic) RegisterInterfaces(registry cdctypes.InterfaceRegistry)
- func (AppModuleBasic) RegisterLegacyAminoCodec(cdc *codec.LegacyAmino)
- func (AppModuleBasic) RegisterRESTRoutes(clientCtx client.Context, rtr *mux.Router)
- func (AppModuleBasic) ValidateGenesis(cdc codec.JSONCodec, config client.TxEncodingConfig, bz json.RawMessage) error
- type AppModuleSimulation
- func (AppModuleSimulation) GenerateGenesisState(simState *module.SimulationState)
- func (AppModuleSimulation) ProposalContents(_ module.SimulationState) []simtypes.WeightedProposalContent
- func (AppModuleSimulation) RandomizedParams(r *rand.Rand) []simtypes.ParamChange
- func (AppModuleSimulation) RegisterStoreDecoder(sdr sdk.StoreDecoderRegistry)
- func (am AppModuleSimulation) WeightedOperations(simState module.SimulationState) []simtypes.WeightedOperation
- type Keeper
Constants ¶
const ( // StoreKey represents storekey of market module StoreKey = types.StoreKey // ModuleName represents current module name ModuleName = types.ModuleName )
Variables ¶
var ( // NewKeeper creates new keeper instance of market module NewKeeper = keeper.NewKeeper )
Functions ¶
func DefaultGenesisState ¶
func DefaultGenesisState() *types.GenesisState
DefaultGenesisState returns default genesis state as raw bytes for the market module.
func ExportGenesis ¶
ExportGenesis returns genesis state as raw bytes for the market module
func InitGenesis ¶
func InitGenesis(ctx sdk.Context, keeper keeper.IKeeper, data *types.GenesisState) []abci.ValidatorUpdate
InitGenesis initiate genesis state and return updated validator details
func ValidateGenesis ¶
func ValidateGenesis(data *types.GenesisState) error
ValidateGenesis does validation check of the Genesis
Types ¶
type AppModule ¶
type AppModule struct { AppModuleBasic // contains filtered or unexported fields }
AppModule implements an application module for the market module.
func NewAppModule ¶
func NewAppModule( cdc codec.Codec, keeper keeper.IKeeper, ekeeper ekeeper.Keeper, akeeper akeeper.Keeper, dkeeper handler.DeploymentKeeper, pkeeper handler.ProviderKeeper, bkeeper bankkeeper.Keeper, ) AppModule
NewAppModule creates a new AppModule object
func (AppModule) BeginBlock ¶
func (am AppModule) BeginBlock(_ sdk.Context, _ abci.RequestBeginBlock)
BeginBlock performs no-op
func (AppModule) ConsensusVersion ¶
ConsensusVersion implements module.AppModule#ConsensusVersion
func (AppModule) EndBlock ¶
func (am AppModule) EndBlock(ctx sdk.Context, _ abci.RequestEndBlock) []abci.ValidatorUpdate
EndBlock returns the end blocker for the market module. It returns no validator updates.
func (AppModule) ExportGenesis ¶
ExportGenesis returns the exported genesis state as raw bytes for the market module.
func (AppModule) InitGenesis ¶
func (am AppModule) InitGenesis(ctx sdk.Context, cdc codec.JSONCodec, data json.RawMessage) []abci.ValidatorUpdate
InitGenesis performs genesis initialization for the market module. It returns no validator updates.
func (AppModule) LegacyQuerierHandler ¶
func (am AppModule) LegacyQuerierHandler(_ *codec.LegacyAmino) sdk.Querier
LegacyQuerierHandler returns the sdk.Querier for market module
func (AppModule) QuerierRoute ¶
QuerierRoute returns the market module's querier route name.
func (AppModule) RegisterInvariants ¶
func (am AppModule) RegisterInvariants(ir sdk.InvariantRegistry)
RegisterInvariants registers module invariants
func (AppModule) RegisterServices ¶
func (am AppModule) RegisterServices(cfg module.Configurator)
RegisterServices registers the module's services
type AppModuleBasic ¶
type AppModuleBasic struct {
// contains filtered or unexported fields
}
AppModuleBasic defines the basic application module used by the market module.
func (AppModuleBasic) DefaultGenesis ¶
func (AppModuleBasic) DefaultGenesis(cdc codec.JSONCodec) json.RawMessage
DefaultGenesis returns default genesis state as raw bytes for the market module.
func (AppModuleBasic) GetQueryClient ¶
func (AppModuleBasic) GetQueryClient(clientCtx client.Context) types.QueryClient
GetQueryClient returns a new query client for this module
func (AppModuleBasic) GetQueryCmd ¶
func (AppModuleBasic) GetQueryCmd() *cobra.Command
GetQueryCmd returns the root query command of this module
func (AppModuleBasic) GetTxCmd ¶
func (AppModuleBasic) GetTxCmd() *cobra.Command
GetTxCmd returns the root tx command of this module
func (AppModuleBasic) RegisterGRPCGatewayRoutes ¶
func (AppModuleBasic) RegisterGRPCGatewayRoutes(clientCtx client.Context, mux *runtime.ServeMux)
RegisterGRPCGatewayRoutes registers the gRPC Gateway routes for the market module.
func (AppModuleBasic) RegisterInterfaces ¶
func (b AppModuleBasic) RegisterInterfaces(registry cdctypes.InterfaceRegistry)
RegisterInterfaces registers the module's interface types
func (AppModuleBasic) RegisterLegacyAminoCodec ¶
func (AppModuleBasic) RegisterLegacyAminoCodec(cdc *codec.LegacyAmino)
RegisterLegacyAminoCodec registers the market module's types for the given codec.
func (AppModuleBasic) RegisterRESTRoutes ¶
func (AppModuleBasic) RegisterRESTRoutes(clientCtx client.Context, rtr *mux.Router)
RegisterRESTRoutes registers rest routes for this module
func (AppModuleBasic) ValidateGenesis ¶
func (AppModuleBasic) ValidateGenesis(cdc codec.JSONCodec, config client.TxEncodingConfig, bz json.RawMessage) error
ValidateGenesis validation check of the Genesis
type AppModuleSimulation ¶
type AppModuleSimulation struct {
// contains filtered or unexported fields
}
AppModuleSimulation implements an application simulation module for the market module.
func NewAppModuleSimulation ¶
func NewAppModuleSimulation( keeper keeper.IKeeper, akeeper govtypes.AccountKeeper, dkeeper handler.DeploymentKeeper, pkeeper handler.ProviderKeeper, bkeeper bankkeeper.Keeper, ) AppModuleSimulation
NewAppModule creates a new AppModuleSimulation instance
func (AppModuleSimulation) GenerateGenesisState ¶
func (AppModuleSimulation) GenerateGenesisState(simState *module.SimulationState)
GenerateGenesisState creates a randomized GenState of the staking module.
func (AppModuleSimulation) ProposalContents ¶
func (AppModuleSimulation) ProposalContents(_ module.SimulationState) []simtypes.WeightedProposalContent
ProposalContents doesn't return any content functions for governance proposals.
func (AppModuleSimulation) RandomizedParams ¶
func (AppModuleSimulation) RandomizedParams(r *rand.Rand) []simtypes.ParamChange
RandomizedParams creates randomized staking param changes for the simulator.
func (AppModuleSimulation) RegisterStoreDecoder ¶
func (AppModuleSimulation) RegisterStoreDecoder(sdr sdk.StoreDecoderRegistry)
RegisterStoreDecoder registers a decoder for staking module's types
func (AppModuleSimulation) WeightedOperations ¶
func (am AppModuleSimulation) WeightedOperations(simState module.SimulationState) []simtypes.WeightedOperation
WeightedOperations returns the all the staking module operations with their respective weights.