Documentation ¶
Index ¶
- Variables
- func GetMaccPerms() map[string][]string
- func MakeCodec() *codec.Codec
- type GenesisState
- type QonicoIoTApp
- func (app *QonicoIoTApp) BeginBlocker(ctx sdk.Context, req abci.RequestBeginBlock) abci.ResponseBeginBlock
- func (app *QonicoIoTApp) Codec() *codec.Codec
- func (app *QonicoIoTApp) EndBlocker(ctx sdk.Context, req abci.RequestEndBlock) abci.ResponseEndBlock
- func (app *QonicoIoTApp) ExportAppStateAndValidators(forZeroHeight bool, jailWhiteList []string) (appState json.RawMessage, validators []tmtypes.GenesisValidator, err error)
- func (app *QonicoIoTApp) InitChainer(ctx sdk.Context, req abci.RequestInitChain) abci.ResponseInitChain
- func (app *QonicoIoTApp) LoadHeight(height int64) error
- func (app *QonicoIoTApp) ModuleAccountAddrs() map[string]bool
- func (app *QonicoIoTApp) SimulationManager() *module.SimulationManager
Constants ¶
This section is empty.
Variables ¶
var ( // DefaultCLIHome default home directories for the application CLI DefaultCLIHome = os.ExpandEnv("$HOME/.qonicocli") // DefaultNodeHome sets the folder where the applcation data and configuration will be stored DefaultNodeHome = os.ExpandEnv("$HOME/.qonicod") // ModuleBasics The module BasicManager is in charge of setting up basic, // non-dependant module elements, such as codec registration // and genesis verification. ModuleBasics = module.NewBasicManager( genutil.AppModuleBasic{}, auth.AppModuleBasic{}, bank.AppModuleBasic{}, staking.AppModuleBasic{}, mint.AppModuleBasic{}, distr.AppModuleBasic{}, gov.NewAppModuleBasic(paramsclient.ProposalHandler, distr.ProposalHandler, upgradeclient.ProposalHandler), params.AppModuleBasic{}, crisis.AppModuleBasic{}, slashing.AppModuleBasic{}, supply.AppModuleBasic{}, upgrade.AppModuleBasic{}, evidence.AppModuleBasic{}, datanode.AppModule{}, ) )
Functions ¶
func GetMaccPerms ¶
GetMaccPerms returns a mapping of the application's module account permissions.
Types ¶
type GenesisState ¶
type GenesisState map[string]json.RawMessage
GenesisState represents chain state at the start of the chain. Any initial state (account balances) are stored here.
func NewDefaultGenesisState ¶
func NewDefaultGenesisState() GenesisState
NewDefaultGenesisState generates the default state for the application.
type QonicoIoTApp ¶
QonicoIoTApp extended ABCI application
func NewQonicoIoTApp ¶
func NewQonicoIoTApp( logger log.Logger, db dbm.DB, traceStore io.Writer, loadLatest bool, invCheckPeriod uint, skipUpgradeHeights map[int64]bool, baseAppOptions ...func(*bam.BaseApp), ) *QonicoIoTApp
Newcosmos-iotApp is a constructor function for cosmos-iotApp
func (*QonicoIoTApp) BeginBlocker ¶
func (app *QonicoIoTApp) BeginBlocker(ctx sdk.Context, req abci.RequestBeginBlock) abci.ResponseBeginBlock
BeginBlocker application updates every begin block
func (*QonicoIoTApp) Codec ¶
func (app *QonicoIoTApp) Codec() *codec.Codec
Codec returns the application's sealed codec.
func (*QonicoIoTApp) EndBlocker ¶
func (app *QonicoIoTApp) EndBlocker(ctx sdk.Context, req abci.RequestEndBlock) abci.ResponseEndBlock
EndBlocker application updates every end block
func (*QonicoIoTApp) ExportAppStateAndValidators ¶
func (app *QonicoIoTApp) ExportAppStateAndValidators( forZeroHeight bool, jailWhiteList []string, ) (appState json.RawMessage, validators []tmtypes.GenesisValidator, err error)
ExportAppStateAndValidators exports the state of the application for a genesis file.
func (*QonicoIoTApp) InitChainer ¶
func (app *QonicoIoTApp) InitChainer(ctx sdk.Context, req abci.RequestInitChain) abci.ResponseInitChain
InitChainer application update at chain initialization
func (*QonicoIoTApp) LoadHeight ¶
func (app *QonicoIoTApp) LoadHeight(height int64) error
LoadHeight loads a particular height
func (*QonicoIoTApp) ModuleAccountAddrs ¶
func (app *QonicoIoTApp) ModuleAccountAddrs() map[string]bool
ModuleAccountAddrs returns all the app's module account addresses.
func (*QonicoIoTApp) SimulationManager ¶
func (app *QonicoIoTApp) SimulationManager() *module.SimulationManager
SimulationManager implements the SimulationApp interface