Documentation ¶
Index ¶
- Variables
- func GetMaccPerms() map[string][]string
- func MakeEncodingConfig() params.EncodingConfig
- func RegisterSwaggerAPI(ctx client.Context, rtr *mux.Router)
- type FarmingApp
- func (app *FarmingApp) AppCodec() codec.Codec
- func (app *FarmingApp) BeginBlocker(ctx sdk.Context, req abci.RequestBeginBlock) abci.ResponseBeginBlock
- func (app *FarmingApp) EndBlocker(ctx sdk.Context, req abci.RequestEndBlock) abci.ResponseEndBlock
- func (app *FarmingApp) ExportAppStateAndValidators(forZeroHeight bool, jailAllowedAddrs []string) (servertypes.ExportedApp, error)
- func (app *FarmingApp) GetKey(storeKey string) *sdk.KVStoreKey
- func (app *FarmingApp) GetMemKey(storeKey string) *sdk.MemoryStoreKey
- func (app *FarmingApp) GetSubspace(moduleName string) paramstypes.Subspace
- func (app *FarmingApp) GetTKey(storeKey string) *sdk.TransientStoreKey
- func (app *FarmingApp) InitChainer(ctx sdk.Context, req abci.RequestInitChain) abci.ResponseInitChain
- func (app *FarmingApp) InterfaceRegistry() types.InterfaceRegistry
- func (app *FarmingApp) LegacyAmino() *codec.LegacyAmino
- func (app *FarmingApp) LoadHeight(height int64) error
- func (app *FarmingApp) ModuleAccountAddrs() map[string]bool
- func (app *FarmingApp) Name() string
- func (app *FarmingApp) RegisterAPIRoutes(apiSvr *api.Server, apiConfig config.APIConfig)
- func (app *FarmingApp) RegisterTendermintService(clientCtx client.Context)
- func (app *FarmingApp) RegisterTxService(clientCtx client.Context)
- func (app *FarmingApp) SimulationManager() *module.SimulationManager
- type GenesisState
Constants ¶
This section is empty.
Variables ¶
var ( // DefaultNodeHome default home directories for the application daemon DefaultNodeHome string // 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( paramsclient.ProposalHandler, distrclient.ProposalHandler, upgradeclient.ProposalHandler, upgradeclient.CancelProposalHandler, ), params.AppModuleBasic{}, crisis.AppModuleBasic{}, slashing.AppModuleBasic{}, upgrade.AppModuleBasic{}, evidence.AppModuleBasic{}, vesting.AppModuleBasic{}, farming.AppModuleBasic{}, ) )
Functions ¶
func GetMaccPerms ¶
GetMaccPerms returns a copy of the module account permissions
func MakeEncodingConfig ¶
func MakeEncodingConfig() params.EncodingConfig
MakeEncodingConfig creates an EncodingConfig for testing
Types ¶
type FarmingApp ¶
type FarmingApp struct { *baseapp.BaseApp // keepers AccountKeeper authkeeper.AccountKeeper BankKeeper bankkeeper.Keeper 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 AuthzKeeper authzkeeper.Keeper EvidenceKeeper evidencekeeper.Keeper FeeGrantKeeper feegrantkeeper.Keeper FarmingKeeper farmingkeeper.Keeper // contains filtered or unexported fields }
FarmingApp 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 NewFarmingApp ¶
func NewFarmingApp( logger log.Logger, db dbm.DB, traceStore io.Writer, loadLatest bool, skipUpgradeHeights map[int64]bool, homePath string, invCheckPeriod uint, encodingConfig farmingparams.EncodingConfig, appOpts servertypes.AppOptions, baseAppOptions ...func(*baseapp.BaseApp), ) *FarmingApp
NewFarmingApp returns a reference to an initialized FarmingApp.
func (*FarmingApp) AppCodec ¶
func (app *FarmingApp) AppCodec() codec.Codec
AppCodec returns FarmingApp's 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 (*FarmingApp) BeginBlocker ¶
func (app *FarmingApp) BeginBlocker(ctx sdk.Context, req abci.RequestBeginBlock) abci.ResponseBeginBlock
BeginBlocker application updates every begin block.
func (*FarmingApp) EndBlocker ¶
func (app *FarmingApp) EndBlocker(ctx sdk.Context, req abci.RequestEndBlock) abci.ResponseEndBlock
EndBlocker application updates every end block.
func (*FarmingApp) ExportAppStateAndValidators ¶
func (app *FarmingApp) ExportAppStateAndValidators( forZeroHeight bool, jailAllowedAddrs []string, ) (servertypes.ExportedApp, error)
ExportAppStateAndValidators exports the state of the application for a genesis file.
func (*FarmingApp) GetKey ¶
func (app *FarmingApp) 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 (*FarmingApp) GetMemKey ¶
func (app *FarmingApp) GetMemKey(storeKey string) *sdk.MemoryStoreKey
GetMemKey returns the MemStoreKey for the provided mem key.
NOTE: This is solely used for testing purposes.
func (*FarmingApp) GetSubspace ¶
func (app *FarmingApp) 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 (*FarmingApp) GetTKey ¶
func (app *FarmingApp) 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 (*FarmingApp) InitChainer ¶
func (app *FarmingApp) InitChainer(ctx sdk.Context, req abci.RequestInitChain) abci.ResponseInitChain
InitChainer application update at chain initialization.
func (*FarmingApp) InterfaceRegistry ¶
func (app *FarmingApp) InterfaceRegistry() types.InterfaceRegistry
InterfaceRegistry returns FarmingApp's InterfaceRegistry
func (*FarmingApp) LegacyAmino ¶
func (app *FarmingApp) LegacyAmino() *codec.LegacyAmino
LegacyAmino returns FarmingApp'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 (*FarmingApp) LoadHeight ¶
func (app *FarmingApp) LoadHeight(height int64) error
LoadHeight loads a particular height.
func (*FarmingApp) ModuleAccountAddrs ¶
func (app *FarmingApp) ModuleAccountAddrs() map[string]bool
ModuleAccountAddrs returns all the app's module account addresses.
func (*FarmingApp) RegisterAPIRoutes ¶
func (app *FarmingApp) RegisterAPIRoutes(apiSvr *api.Server, apiConfig config.APIConfig)
RegisterAPIRoutes registers all application module routes with the provided API server.
func (*FarmingApp) RegisterTendermintService ¶
func (app *FarmingApp) RegisterTendermintService(clientCtx client.Context)
RegisterTendermintService implements the Application.RegisterTendermintService method.
func (*FarmingApp) RegisterTxService ¶
func (app *FarmingApp) RegisterTxService(clientCtx client.Context)
RegisterTxService implements the Application.RegisterTxService method.
func (*FarmingApp) SimulationManager ¶
func (app *FarmingApp) SimulationManager() *module.SimulationManager
SimulationManager implements the SimulationApp interface
type GenesisState ¶
type GenesisState map[string]json.RawMessage
The genesis state 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() GenesisState
NewDefaultGenesisState generates the default state for the application.