Versions in this module Expand all Collapse all v0 v0.4.0 Aug 18, 2023 Changes in this version + func RegisterLegacyAminoCodec(legacyAmino *codec.LegacyAmino) + type Auxiliaries interface + Get func() []Auxiliary + GetAuxiliary func(string) Auxiliary + type Auxiliary interface + GetKeeper func() AuxiliaryKeeper + GetName func() string + Initialize func(Mapper, ParameterManager, ...interface{}) Auxiliary + type AuxiliaryKeeper interface + Help func(context.Context, AuxiliaryRequest) (AuxiliaryResponse, error) + type AuxiliaryRequest interface + type AuxiliaryResponse interface + type Block interface + Begin func(context.Context, abciTypes.RequestBeginBlock) + End func(context.Context, abciTypes.RequestEndBlock) + Initialize func(Mapper, ParameterManager, ...interface{}) Block + type CLICommand interface + CreateCommand func(func(command *cobra.Command, args []string) error) *cobra.Command + ReadBaseReq func(client.Context) rest.BaseReq + ReadBool func(CLIFlag) bool + ReadInt func(CLIFlag) int + ReadInt64 func(CLIFlag) int64 + ReadString func(CLIFlag) string + type CLIFlag interface + GetName func() string + GetValue func() interface{} + ReadCLIValue func() interface{} + Register func(*cobra.Command) + type Codec interface + GetLegacyAmino func() *codec.LegacyAmino + GetProtoCodec func() *codec.ProtoCodec + Initialize func(module.BasicManager) Codec + InterfaceRegistry func() types.InterfaceRegistry + type Collection interface + Add func(Record) Collection + Fetch func(Key) Collection + FetchAll func() Collection + FetchPaginated func(Key, int32) Collection + FetchRecord func(Key) Record + Get func() []Record + GetMappable func(Key) Mappable + GetMappables func() []Mappable + Initialize func(context.Context, Mapper) Collection + Iterate func(Key, func(Record) bool) + IterateAll func(func(Record) bool) Collection + IteratePaginated func(Key, int32, func(Record) bool) + Mutate func(Record) Collection + Remove func(Record) Collection + type Genesis interface + Decode func(sdkCodec.JSONCodec, []byte) Genesis + Default func() Genesis + Encode func(sdkCodec.JSONCodec) []byte + Export func(context.Context, Mapper, ParameterManager) Genesis + Import func(context.Context, Mapper, ParameterManager) + Initialize func([]Record, lists.ParameterList) Genesis + ValidateBasic func(ParameterManager) error + type Invariants interface + Register func(sdkTypes.InvariantRegistry) + type Keeper interface + Initialize func(Mapper, ParameterManager, []interface{}) Keeper + type Key interface + Equals func(Key) bool + GeneratePrefixedStoreKeyBytes func() []byte + GenerateStoreKeyBytes func() []byte + GenerateStorePrefixBytes func() []byte + IsPartial func() bool + type Mappable interface + RegisterLegacyAminoCodec func(*codec.LegacyAmino) + ValidateBasic func() error + type Mapper interface + Delete func(context.Context, Key) + FetchAll func(context.Context) []Record + Initialize func(*sdkTypes.KVStoreKey) Mapper + Iterate func(context.Context, Key, func(Record) bool) + IterateAll func(context.Context, func(Record) bool) + IteratePaginated func(context.Context, Key, int32, func(Record) bool) + NewCollection func(context.Context) Collection + Read func(context.Context, Key) Record + StoreDecoder func(kv.Pair, kv.Pair) string + Upsert func(context.Context, Record) + type Message interface + RegisterInterface func(types.InterfaceRegistry) + RegisterLegacyAminoCodec func(*codec.LegacyAmino) + Type func() string + type Module interface + DecodeModuleTransactionRequest func(string, json.RawMessage) (sdkTypes.Msg, error) + GetAuxiliary func(string) Auxiliary + GetTransactions func() Transactions + Initialize func(*sdkTypes.KVStoreKey, paramsTypes.Subspace, ...interface{}) Module + type ParameterManager interface + Fetch func(context.Context) ParameterManager + Get func() lists.ParameterList + GetKeyTable func() paramsTypes.KeyTable + GetParameter func(ids.PropertyID) parameters.Parameter + GetValidatableParameter func(ids.PropertyID) ValidatableParameter + Initialize func(paramsTypes.Subspace) ParameterManager + RESTQueryHandler func(client.Context) http.HandlerFunc + Set func(context.Context, lists.ParameterList) + ValidateParameter func(parameters.Parameter) error + type Queries interface + Get func() []Query + GetQuery func(string) Query + type Query interface + Command func() *cobra.Command + GetName func() string + HandleQuery func(context.Context, abciTypes.RequestQuery) ([]byte, error) + Initialize func(Mapper, ParameterManager, ...interface{}) Query + RESTQueryHandler func(client.Context) http.HandlerFunc + RegisterGRPCGatewayRoute func(client.Context, *runtime.ServeMux) + RegisterService func(module.Configurator) + type QueryKeeper interface + Enquire func(context.Context, QueryRequest) (QueryResponse, error) + type QueryRequest interface + Decode func([]byte) (QueryRequest, error) + Encode func() ([]byte, error) + FromCLI func(CLICommand, client.Context) (QueryRequest, error) + FromHTTPRequest func(*http.Request) (QueryRequest, error) + type QueryResponse interface + Decode func([]byte) (QueryResponse, error) + Encode func() ([]byte, error) + type Record interface + Delete func(types.KVStore) + GetKey func() Key + GetMappable func() Mappable + Read func(types.KVStore) Record + ReadFromIterator func(types.Iterator) Record + WithKey func(Key) Record + Write func(types.KVStore) Record + type Request interface + Validate func() error + type Response interface + GetError func() error + IsSuccessful func() bool + type Simulator interface + ParamChangeList func(*rand.Rand) []simulationTypes.ParamChange + RandomizedGenesisState func(*module.SimulationState) + WeightedOperations func(module.SimulationState, Module) simulation.WeightedOperations + WeightedProposalContentList func(module.SimulationState) []simulationTypes.WeightedProposalContent + type Transaction interface + Command func() *cobra.Command + DecodeTransactionRequest func(json.RawMessage) (sdkTypes.Msg, error) + GetName func() string + HandleMessage func(context.Context, Message) (*sdkTypes.Result, error) + InitializeKeeper func(Mapper, ParameterManager, ...interface{}) Transaction + RESTRequestHandler func(client.Context) http.HandlerFunc + RegisterGRPCGatewayRoute func(client.Context, *runtime.ServeMux) + RegisterInterfaces func(types.InterfaceRegistry) + RegisterLegacyAminoCodec func(amino *codec.LegacyAmino) + RegisterService func(module.Configurator) + type TransactionKeeper interface + Transact func(context.Context, Message) (TransactionResponse, error) + type TransactionRequest interface + FromCLI func(CLICommand, client.Context) (TransactionRequest, error) + FromJSON func(json.RawMessage) (TransactionRequest, error) + GetBaseReq func() rest.BaseReq + MakeMsg func() (sdkTypes.Msg, error) + RegisterLegacyAminoCodec func(*codec.LegacyAmino) + type TransactionResponse interface + GetResult func() *sdkTypes.Result + type Transactions interface + Get func() []Transaction + GetTransaction func(string) Transaction + type ValidatableParameter interface + GetParameter func() parameters.Parameter + GetValidator func() func(i interface{}) error + Mutate func(data.Data) ValidatableParameter + Validate func() error + type WasmMessage interface + GetRawMessage func() json.RawMessage + GetType func() string + type WasmMessagePrototype func() WasmMessage