Versions in this module Expand all Collapse all v0 v0.5.1 Dec 7, 2021 Changes in this version + const CertificationCenter + const ModuleName + const NodeAdmin + const RouterKey + const StoreKey + const TestHouse + const Trustee + const Vendor + var ModuleCdc = types.ModuleCdc + var NewAccount = types.NewAccount + var NewKeeper = keeper.NewKeeper + var NewQuerier = keeper.NewQuerier + var RegisterCodec = types.RegisterCodec + var Roles = types.Roles + func AccountApprovalsCount(ctx sdk.Context, keeper keeper.Keeper) int + func DefaultSigVerificationGasConsumer(meter sdk.GasMeter, pubkey crypto.PubKey) sdk.Result + func GetSignBytes(chainID string, stdTx auth.StdTx, acc types.Account, genesis bool) []byte + func GetSignerAcc(ctx sdk.Context, keeper Keeper, address sdk.AccAddress) (acc types.Account, res sdk.Result) + func InitGenesis(ctx sdk.Context, keeper Keeper, data GenesisState) + func NewAnteHandler(ak Keeper, sigGasConsumer SignatureVerificationGasConsumer) sdk.AnteHandler + func NewHandler(keeper keeper.Keeper) sdk.Handler + func SetGasMeter(simulate bool, ctx sdk.Context, gasLimit uint64) sdk.Context + func ValidateGenesis(data GenesisState) error + func ValidateMemo(stdTx auth.StdTx) sdk.Result + type Account = types.Account + type AccountRole = types.AccountRole + type AccountRoles = types.AccountRoles + type AppModule struct + func NewAppModule(keeper Keeper) AppModule + func (a AppModule) BeginBlock(sdk.Context, abci.RequestBeginBlock) + func (a AppModule) EndBlock(sdk.Context, abci.RequestEndBlock) []abci.ValidatorUpdate + func (a AppModule) ExportGenesis(ctx sdk.Context) json.RawMessage + func (a AppModule) InitGenesis(ctx sdk.Context, data json.RawMessage) []abci.ValidatorUpdate + func (a AppModule) NewHandler() sdk.Handler + func (a AppModule) NewQuerierHandler() sdk.Querier + func (a AppModule) QuerierRoute() string + func (a AppModule) RegisterInvariants(sdk.InvariantRegistry) + func (a AppModule) Route() string + type AppModuleBasic struct + func (AppModuleBasic) GetQueryCmd(cdc *codec.Codec) *cobra.Command + func (AppModuleBasic) GetTxCmd(cdc *codec.Codec) *cobra.Command + func (AppModuleBasic) RegisterRESTRoutes(ctx context.CLIContext, rtr *mux.Router) + func (a AppModuleBasic) DefaultGenesis() json.RawMessage + func (a AppModuleBasic) Name() string + func (a AppModuleBasic) RegisterCodec(cdc *codec.Codec) + func (a AppModuleBasic) ValidateGenesis(bz json.RawMessage) error + type GenesisState struct + Accounts []Account + PendingAccountRevocations []PendingAccountRevocation + PendingAccounts []PendingAccount + func DefaultGenesisState() GenesisState + func ExportGenesis(ctx sdk.Context, k Keeper) GenesisState + func NewGenesisState() GenesisState + type Keeper = keeper.Keeper + type ListAccounts = types.ListAccounts + type ListPendingAccountRevocations = types.ListPendingAccountRevocations + type ListPendingAccounts = types.ListPendingAccounts + type PendingAccount = types.PendingAccount + type PendingAccountRevocation = types.PendingAccountRevocation + type SignatureVerificationGasConsumer = func(meter sdk.GasMeter, pubkey crypto.PubKey) sdk.Result + type TestSetup struct + Cdc *amino.Codec + Ctx sdk.Context + Handler sdk.Handler + Keeper Keeper + Querier sdk.Querier + func Setup() TestSetup