Versions in this module Expand all Collapse all v7 v7.0.0 Feb 27, 2025 Changes in this version + var AccountAddressPrefix = "feath" + var AccountPubKeyPrefix = "feathpub" + var AppName = "feather-core" + var BondDenom = "featherstake" + var ConsensusNodeAddressPrefix = "feathvalcons" + var ConsensusNodePubKeyPrefix = "feathvalconspub" + var DefaultNodeHome string + var ModuleBasics = module.NewBasicManager(auth.AppModuleBasic{}, bank.AppModuleBasic{}, authzmodule.AppModuleBasic{}, ...) + var ValidatorAddressPrefix = "feathvaloper" + var ValidatorPubKeyPrefix = "feathvaloperpub" + func AddTestAddrsIncremental(app *App, ctx sdk.Context, accNum int, accAmt math.Int) []sdk.AccAddress + func FundAccount(bankKeeper bankkeeper.Keeper, ctx sdk.Context, addr sdk.AccAddress, ...) error + func FundModuleAccount(bankKeeper bankkeeper.Keeper, ctx sdk.Context, recipientMod string, ...) error + func GenesisStateWithValSet(codec codec.Codec, genesisState map[string]json.RawMessage, ...) (map[string]json.RawMessage, error) + func GetWasmOpts(app *App, appOpts servertypes.AppOptions) []wasm.Option + func NewAnteHandler(options HandlerOptions) (sdk.AnteHandler, error) + func NewTestNetworkFixture() network.TestFixture + func SignAndDeliverWithoutCommit(t *testing.T, txCfg client.TxConfig, app *baseapp.BaseApp, ...) (sdk.GasInfo, *sdk.Result, error) + type App struct + AuthKeeper authkeeper.AccountKeeper + AuthzKeeper authzkeeper.Keeper + BankKeeper bankkeeper.Keeper + CapabilityKeeper *capabilitykeeper.Keeper + ConsensusParamsKeeper consensuskeeper.Keeper + ContractKeeper wasmtypes.ContractOpsKeeper + CrisisKeeper *crisiskeeper.Keeper + DistrKeeper distrkeeper.Keeper + EvidenceKeeper evidencekeeper.Keeper + FeeGrantKeeper feegrantkeeper.Keeper + GovKeeper govkeeper.Keeper + GroupKeeper groupkeeper.Keeper + IBCFeeKeeper ibcfeekeeper.Keeper + IBCHooksKeeper ibchookskeeper.Keeper + IBCKeeper *ibckeeper.Keeper + ICAHostKeeper icahostkeeper.Keeper + MintKeeper mintkeeper.Keeper + ModuleManager *module.Manager + NftKeeper nftkeeper.Keeper + ParamsKeeper paramskeeper.Keeper + SlashingKeeper slashingkeeper.Keeper + StakingKeeper *stakingkeeper.Keeper + TransferKeeper ibctransferkeeper.Keeper + UpgradeKeeper *upgradekeeper.Keeper + WasmKeeper wasmkeeper.Keeper + func NewAppWithCustomOptions(t *testing.T, isCheckTx bool, options SetupOptions) *App + func NewSimApp(logger log.Logger, db tmdb.DB, traceStore io.Writer, loadLatest bool, ...) *App + func Setup(t *testing.T, opts ...wasm.Option) (*App, sdk.Context, *authtypes.BaseAccount) + func SetupWithEmptyStore(tb testing.TB) *App + func SetupWithGenesisValSet(t *testing.T, valSet *tmtypes.ValidatorSet, genAccs []authtypes.GenesisAccount, ...) *App + func (app *App) AppCodec() codec.Codec + func (app *App) BeginBlocker(ctx sdktypes.Context, req abcitypes.RequestBeginBlock) abcitypes.ResponseBeginBlock + func (app *App) DefaultGenesis() map[string]json.RawMessage + func (app *App) EndBlocker(ctx sdktypes.Context, req abcitypes.RequestEndBlock) abcitypes.ResponseEndBlock + func (app *App) ExportAppStateAndValidators(forZeroHeight bool, jailAllowedAddrs []string, modulesToExport []string) (servertypes.ExportedApp, error) + func (app *App) InitChainer(ctx sdktypes.Context, req abcitypes.RequestInitChain) abcitypes.ResponseInitChain + func (app *App) InterfaceRegistry() types.InterfaceRegistry + func (app *App) LegacyAmino() *codec.LegacyAmino + func (app *App) LoadHeight(height int64) error + func (app *App) Name() string + func (app *App) RegisterAPIRoutes(apiSvr *api.Server, apiConfig config.APIConfig) + func (app *App) RegisterNodeService(clientCtx client.Context) + func (app *App) RegisterTendermintService(clientCtx client.Context) + func (app *App) RegisterTxService(clientCtx client.Context) + func (app *App) SimulationManager() *module.SimulationManager + func (app *App) TxConfig() client.TxConfig + type EncodingConfig struct + Amino *codec.LegacyAmino + InterfaceRegistry types.InterfaceRegistry + Marshaler codec.Codec + TxConfig client.TxConfig + func MakeEncodingConfig() EncodingConfig + type GenesisState map[string]json.RawMessage + func GenesisStateWithSingleValidator(t *testing.T, app *App) GenesisState + func NewDefaultGenesisState(cdc codec.JSONCodec) GenesisState + type HandlerOptions struct + Cdc codec.BinaryCodec + IBCKeeper *ibckeeper.Keeper + TxCounterStoreKey storetypes.StoreKey + WasmConfig wasmTypes.WasmConfig + type SetupOptions struct + AppOpts servertypes.AppOptions + DB *dbm.MemDB + Logger log.Logger + WasmOpts []wasm.Option Other modules containing this package github.com/cosmos/ibc-apps/modules/ibc-hooks/v8