Documentation
¶
Index ¶
- Variables
- func AppConfig() depinject.Config
- type HyleApp
- func (app *HyleApp) ExportAppStateAndValidators(forZeroHeight bool, jailAllowedAddrs []string, modulesToExport []string) (servertypes.ExportedApp, error)
- func (app *HyleApp) GetKey(storeKey string) *storetypes.KVStoreKey
- func (app *HyleApp) LegacyAmino() *codec.LegacyAmino
- func (app *HyleApp) RegisterAPIRoutes(apiSvr *api.Server, apiConfig config.APIConfig)
- func (app *HyleApp) SimulationManager() *module.SimulationManager
Constants ¶
This section is empty.
Variables ¶
View Source
var AppConfigYAML []byte
View Source
var DefaultNodeHome string
DefaultNodeHome default home directories for the application daemon
Functions ¶
Types ¶
type HyleApp ¶
type HyleApp struct { *runtime.App // keepers AccountKeeper authkeeper.AccountKeeper BankKeeper bankkeeper.Keeper StakingKeeper *stakingkeeper.Keeper DistrKeeper distrkeeper.Keeper ConsensusParamsKeeper consensuskeeper.Keeper ZktxKeeper zktxKeeper.Keeper // contains filtered or unexported fields }
HyleApp extends an ABCI application, but with most of its parameters exported. They are exported for convenience in creating helper functions, as object capabilities aren't needed for testing.
func NewHyleApp ¶
func NewHyleApp( logger log.Logger, db dbm.DB, traceStore io.Writer, loadLatest bool, appOpts servertypes.AppOptions, baseAppOptions ...func(*baseapp.BaseApp), ) (*HyleApp, error)
NewHyleApp returns a reference to an initialized HyleApp.
func (*HyleApp) ExportAppStateAndValidators ¶
func (app *HyleApp) ExportAppStateAndValidators( forZeroHeight bool, jailAllowedAddrs []string, modulesToExport []string, ) (servertypes.ExportedApp, error)
ExportAppStateAndValidators exports the state of the application for a genesis file.
func (*HyleApp) GetKey ¶
func (app *HyleApp) GetKey(storeKey string) *storetypes.KVStoreKey
GetKey returns the KVStoreKey for the provided store key.
func (*HyleApp) LegacyAmino ¶
func (app *HyleApp) LegacyAmino() *codec.LegacyAmino
LegacyAmino returns HyleApp's amino codec.
func (*HyleApp) RegisterAPIRoutes ¶
RegisterAPIRoutes registers all application module routes with the provided API server.
func (*HyleApp) SimulationManager ¶
func (app *HyleApp) SimulationManager() *module.SimulationManager
SimulationManager implements the SimulationApp interface
Click to show internal directories.
Click to hide internal directories.