Documentation
¶
Overview ¶
Package app contains configuration of the network.
Index ¶
- Constants
- Variables
- func New(logger log.Logger, db dbm.DB, traceStore io.Writer, loadLatest bool, ...) cosmoscmd.App
- type GenesisState
- type OnomyApp
- func (app *OnomyApp) AppCodec() codec.Codec
- func (app *OnomyApp) BeginBlocker(ctx sdk.Context, req abci.RequestBeginBlock) abci.ResponseBeginBlock
- func (app *OnomyApp) BlockedAddrs() map[string]bool
- func (app *OnomyApp) EndBlocker(ctx sdk.Context, req abci.RequestEndBlock) abci.ResponseEndBlock
- func (app *OnomyApp) ExportAppStateAndValidators(forZeroHeight bool, jailAllowedAddrs []string) (servertypes.ExportedApp, error)
- func (app OnomyApp) GetBaseApp() *baseapp.BaseApp
- func (app *OnomyApp) GetKey(storeKey string) *sdk.KVStoreKey
- func (app *OnomyApp) GetMemKey(storeKey string) *sdk.MemoryStoreKey
- func (app *OnomyApp) GetSubspace(moduleName string) paramstypes.Subspace
- func (app *OnomyApp) GetTKey(storeKey string) *sdk.TransientStoreKey
- func (app *OnomyApp) InitChainer(ctx sdk.Context, req abci.RequestInitChain) abci.ResponseInitChain
- func (app *OnomyApp) InterfaceRegistry() types.InterfaceRegistry
- func (app *OnomyApp) LegacyAmino() *codec.LegacyAmino
- func (app *OnomyApp) LoadHeight(height int64) error
- func (app *OnomyApp) ModuleAccountAddrs() map[string]bool
- func (app *OnomyApp) Name() string
- func (app *OnomyApp) RegisterAPIRoutes(apiSvr *api.Server, apiConfig config.APIConfig)
- func (app *OnomyApp) RegisterTendermintService(clientCtx client.Context)
- func (app *OnomyApp) RegisterTxService(clientCtx client.Context)
- func (app *OnomyApp) SetOrderEndBlockers(moduleNames ...string)
- func (app *OnomyApp) SimulationManager() *module.SimulationManager
Constants ¶
const ( // AccountAddressPrefix is cosmos-sdk accounts prefixes. AccountAddressPrefix = "onomy" // Name is the name of the onomy chain. Name = "onomy" )
Variables ¶
var ( // DefaultNodeHome default home directories for the application daemon. DefaultNodeHome string // nolint:gochecknoglobals // cosmos-sdk application style // ModuleBasics defines the module BasicManager is in charge of setting up basic, // non-dependant module elements, such as codec registration // and genesis verification. ModuleBasics = module.NewBasicManager( auth.AppModuleBasic{}, genutil.AppModuleBasic{}, bank.AppModuleBasic{}, capability.AppModuleBasic{}, staking.AppModuleBasic{}, mint.AppModuleBasic{}, distr.AppModuleBasic{}, gov.NewAppModuleBasic(getGovProposalHandlers()...), params.AppModuleBasic{}, crisis.AppModuleBasic{}, slashing.AppModuleBasic{}, feegrantmodule.AppModuleBasic{}, ibc.AppModuleBasic{}, upgrade.AppModuleBasic{}, evidence.AppModuleBasic{}, transfer.AppModuleBasic{}, vesting.AppModuleBasic{}, gravity.AppModuleBasic{}, dao.AppModuleBasic{}, ) )
Functions ¶
func New ¶ added in v0.0.4
func New( logger log.Logger, db dbm.DB, traceStore io.Writer, loadLatest bool, skipUpgradeHeights map[int64]bool, homePath string, invCheckPeriod uint, encodingConfig cosmoscmd.EncodingConfig, appOpts servertypes.AppOptions, baseAppOptions ...func(*baseapp.BaseApp), ) cosmoscmd.App
New returns a reference to an initialized blockchain app.
Types ¶
type GenesisState ¶
type GenesisState map[string]json.RawMessage
GenesisState of the blockchain is represented here as a map of raw json messages key'd by a identifier string. The identifier is used to determine which module genesis information belongs to so it may be appropriately routed during init chain. Within this application default genesis information is retrieved from the ModuleBasicManager which populates json from each BasicModule object provided to it during init.
func NewDefaultGenesisState ¶
func NewDefaultGenesisState(cdc codec.JSONCodec) GenesisState
NewDefaultGenesisState generates the default state for the application.
type OnomyApp ¶ added in v0.0.4
type OnomyApp struct {
*baseapp.BaseApp
// keepers
AccountKeeper authkeeper.AccountKeeper
BankKeeper bankkeeper.BaseKeeper
CapabilityKeeper *capabilitykeeper.Keeper
StakingKeeper stakingkeeper.Keeper
SlashingKeeper slashingkeeper.Keeper
MintKeeper mintkeeper.Keeper
DistrKeeper distrkeeper.Keeper
GovKeeper govkeeper.Keeper
CrisisKeeper crisiskeeper.Keeper
UpgradeKeeper upgradekeeper.Keeper
ParamsKeeper paramskeeper.Keeper
IBCKeeper *ibckeeper.Keeper // IBC Keeper must be a pointer in the app, so we can SetRouter on it correctly
EvidenceKeeper evidencekeeper.Keeper
TransferKeeper ibctransferkeeper.Keeper
FeeGrantKeeper feegrantkeeper.Keeper
// make scoped keepers public for test purposes
ScopedIBCKeeper capabilitykeeper.ScopedKeeper
ScopedTransferKeeper capabilitykeeper.ScopedKeeper
GravityKeeper gravitykeeper.Keeper
DaoKeeper daokeeper.Keeper
// contains filtered or unexported fields
}
OnomyApp 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 (*OnomyApp) AppCodec ¶ added in v0.0.4
AppCodec returns an app codec.
NOTE: This is solely to be used for testing purposes as it may be desirable for modules to register their own custom testing types.
func (*OnomyApp) BeginBlocker ¶ added in v0.0.4
func (app *OnomyApp) BeginBlocker(ctx sdk.Context, req abci.RequestBeginBlock) abci.ResponseBeginBlock
BeginBlocker application updates every begin block.
func (*OnomyApp) BlockedAddrs ¶ added in v0.0.5
BlockedAddrs returns all the app's module account addresses that are not allowed to receive external tokens.
func (*OnomyApp) EndBlocker ¶ added in v0.0.4
func (app *OnomyApp) EndBlocker(ctx sdk.Context, req abci.RequestEndBlock) abci.ResponseEndBlock
EndBlocker application updates every end block.
func (*OnomyApp) ExportAppStateAndValidators ¶ added in v0.0.4
func (app *OnomyApp) ExportAppStateAndValidators( forZeroHeight bool, jailAllowedAddrs []string, ) (servertypes.ExportedApp, error)
ExportAppStateAndValidators exports the state of the application for a genesis file.
func (OnomyApp) GetBaseApp ¶ added in v0.0.5
GetBaseApp returns the base app of the application.
func (*OnomyApp) GetKey ¶ added in v0.0.4
func (app *OnomyApp) GetKey(storeKey string) *sdk.KVStoreKey
GetKey returns the KVStoreKey for the provided store key.
NOTE: This is solely to be used for testing purposes.
func (*OnomyApp) GetMemKey ¶ added in v0.0.4
func (app *OnomyApp) GetMemKey(storeKey string) *sdk.MemoryStoreKey
GetMemKey returns the MemStoreKey for the provided mem key.
NOTE: This is solely used for testing purposes.
func (*OnomyApp) GetSubspace ¶ added in v0.0.4
func (app *OnomyApp) GetSubspace(moduleName string) paramstypes.Subspace
GetSubspace returns a param subspace for a given module name.
NOTE: This is solely to be used for testing purposes.
func (*OnomyApp) GetTKey ¶ added in v0.0.4
func (app *OnomyApp) GetTKey(storeKey string) *sdk.TransientStoreKey
GetTKey returns the TransientStoreKey for the provided store key.
NOTE: This is solely to be used for testing purposes.
func (*OnomyApp) InitChainer ¶ added in v0.0.4
func (app *OnomyApp) InitChainer(ctx sdk.Context, req abci.RequestInitChain) abci.ResponseInitChain
InitChainer application update at chain initialization.
func (*OnomyApp) InterfaceRegistry ¶ added in v0.0.4
func (app *OnomyApp) InterfaceRegistry() types.InterfaceRegistry
InterfaceRegistry returns an InterfaceRegistry.
func (*OnomyApp) LegacyAmino ¶ added in v0.0.4
func (app *OnomyApp) LegacyAmino() *codec.LegacyAmino
LegacyAmino returns SimApp's amino codec.
NOTE: This is solely to be used for testing purposes as it may be desirable for modules to register their own custom testing types.
func (*OnomyApp) LoadHeight ¶ added in v0.0.4
LoadHeight loads a particular height.
func (*OnomyApp) ModuleAccountAddrs ¶ added in v0.0.4
ModuleAccountAddrs returns all the app's module account addresses.
func (*OnomyApp) RegisterAPIRoutes ¶ added in v0.0.4
RegisterAPIRoutes registers all application module routes with the provided API server.
func (*OnomyApp) RegisterTendermintService ¶ added in v0.0.4
RegisterTendermintService implements the Application.RegisterTendermintService method.
func (*OnomyApp) RegisterTxService ¶ added in v0.0.4
RegisterTxService implements the Application.RegisterTxService method.
func (*OnomyApp) SetOrderEndBlockers ¶ added in v0.0.6
SetOrderEndBlockers sets the order of set end-blocker calls.
func (*OnomyApp) SimulationManager ¶ added in v0.0.5
func (app *OnomyApp) SimulationManager() *module.SimulationManager
SimulationManager implements the SimulationApp interface.
Directories
¶
| Path | Synopsis |
|---|---|
|
upgrades
|
|
|
v1.0.1
Package v1_0_1 is contains chain upgrade of the corresponding version.
|
Package v1_0_1 is contains chain upgrade of the corresponding version. |
|
v1.0.3
Package v1_0_3 is contains chain upgrade of the corresponding version.
|
Package v1_0_3 is contains chain upgrade of the corresponding version. |