Documentation ¶
Index ¶
- func KVStoreKeys() []string
- type AppKeepers
- func (appKeepers *AppKeepers) GenerateKeys()
- func (appKeepers *AppKeepers) GetKVStoreKey() map[string]*storetypes.KVStoreKey
- func (appKeepers *AppKeepers) GetKey(storeKey string) *storetypes.KVStoreKey
- func (appKeepers *AppKeepers) GetMemKey(storeKey string) *storetypes.MemoryStoreKey
- func (appKeepers *AppKeepers) GetMemoryStoreKey() map[string]*storetypes.MemoryStoreKey
- func (appKeepers *AppKeepers) GetSubspace(moduleName string) paramstypes.Subspace
- func (appKeepers *AppKeepers) GetTKey(storeKey string) *storetypes.TransientStoreKey
- func (appKeepers *AppKeepers) GetTransientStoreKey() map[string]*storetypes.TransientStoreKey
- func (appKeepers *AppKeepers) InitKeepers(appCodec codec.Codec, bApp *baseapp.BaseApp, cdc *codec.LegacyAmino, ...)
- func (appKeepers *AppKeepers) SetupHooks()
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func KVStoreKeys ¶
func KVStoreKeys() []string
TODO: We need to automate this, by bundling with a module struct...
Types ¶
type AppKeepers ¶
type AppKeepers struct { // make scoped keepers public for test purposes ScopedIBCKeeper capabilitykeeper.ScopedKeeper ScopedTransferKeeper capabilitykeeper.ScopedKeeper ScopedICAControllerKeeper capabilitykeeper.ScopedKeeper ScopedICAHostKeeper capabilitykeeper.ScopedKeeper ScopedInterchainStakingAccountKeeper capabilitykeeper.ScopedKeeper // "Normal" keepers // SDK AccountKeeper authkeeper.AccountKeeper BankKeeper bankkeeper.BaseKeeper DistrKeeper distrkeeper.Keeper StakingKeeper *stakingkeeper.Keeper SlashingKeeper slashingkeeper.Keeper EvidenceKeeper evidencekeeper.Keeper GovKeeper govkeeper.Keeper WasmKeeper wasm.Keeper FeeGrantKeeper feegrantkeeper.Keeper AuthzKeeper authzkeeper.Keeper ParamsKeeper paramskeeper.Keeper CapabilityKeeper *capabilitykeeper.Keeper CrisisKeeper crisiskeeper.Keeper UpgradeKeeper upgradekeeper.Keeper // Quicksilver keepers EpochsKeeper epochskeeper.Keeper MintKeeper mintkeeper.Keeper ClaimsManagerKeeper claimsmanagerkeeper.Keeper InterchainstakingKeeper interchainstakingkeeper.Keeper InterchainQueryKeeper interchainquerykeeper.Keeper ParticipationRewardsKeeper *participationrewardskeeper.Keeper AirdropKeeper *airdropkeeper.Keeper TokenFactoryKeeper tokenfactorykeeper.Keeper // IBC keepers IBCKeeper *ibckeeper.Keeper // IBC Keeper must be a pointer in the app, so we can SetRouter on it correctly ICAControllerKeeper icacontrollerkeeper.Keeper ICAHostKeeper icahostkeeper.Keeper TransferKeeper ibctransferkeeper.Keeper PacketForwardKeeper *packetforwardkeeper.Keeper // Modules ICAModule ica.AppModule TransferModule transfer.AppModule PacketForwardModule packetforward.AppModule // contains filtered or unexported fields }
func NewAppKeepers ¶
func NewAppKeepers( appCodec codec.Codec, bApp *baseapp.BaseApp, legacyAmino *codec.LegacyAmino, maccPerms map[string][]string, blockedAddresses map[string]bool, skipUpgradeHeights map[int64]bool, mock bool, homePath string, invCheckPeriod uint, appOpts servertypes.AppOptions, wasmDir string, wasmConfig wasm.Config, wasmEnabledProposals []wasm.ProposalType, wasmOpts []wasm.Option, ) AppKeepers
func (*AppKeepers) GenerateKeys ¶
func (appKeepers *AppKeepers) GenerateKeys()
GenerateKeys generates new keys (KV Store, Transient store, and memory store).
func (*AppKeepers) GetKVStoreKey ¶
func (appKeepers *AppKeepers) GetKVStoreKey() map[string]*storetypes.KVStoreKey
GetKVStoreKey gets KV Store keys.
func (*AppKeepers) GetKey ¶
func (appKeepers *AppKeepers) GetKey(storeKey string) *storetypes.KVStoreKey
GetKey returns the KVStoreKey for the provided store key.
NOTE: This is solely to be used for testing purposes.
func (*AppKeepers) GetMemKey ¶
func (appKeepers *AppKeepers) GetMemKey(storeKey string) *storetypes.MemoryStoreKey
GetMemKey returns the MemStoreKey for the provided mem key.
NOTE: This is solely used for testing purposes.
func (*AppKeepers) GetMemoryStoreKey ¶
func (appKeepers *AppKeepers) GetMemoryStoreKey() map[string]*storetypes.MemoryStoreKey
GetMemoryStoreKey get memory Store keys.
func (*AppKeepers) GetSubspace ¶
func (appKeepers *AppKeepers) GetSubspace(moduleName string) paramstypes.Subspace
GetSubspace gets existing substore from keeper.
func (*AppKeepers) GetTKey ¶
func (appKeepers *AppKeepers) GetTKey(storeKey string) *storetypes.TransientStoreKey
GetTKey returns the TransientStoreKey for the provided store key.
NOTE: This is solely to be used for testing purposes.
func (*AppKeepers) GetTransientStoreKey ¶
func (appKeepers *AppKeepers) GetTransientStoreKey() map[string]*storetypes.TransientStoreKey
GetTransientStoreKey gets Transient Store keys.
func (*AppKeepers) InitKeepers ¶
func (appKeepers *AppKeepers) InitKeepers( appCodec codec.Codec, bApp *baseapp.BaseApp, cdc *codec.LegacyAmino, maccPerms map[string][]string, blockedAddresses map[string]bool, skipUpgradeHeights map[int64]bool, mock bool, homePath string, invCheckPeriod uint, _ servertypes.AppOptions, wasmDir string, wasmConfig wasm.Config, wasmEnabledProposals []wasm.ProposalType, wasmOpts []wasm.Option, )
InitKeepers initializes all keepers.
func (*AppKeepers) SetupHooks ¶
func (appKeepers *AppKeepers) SetupHooks()
SetupHooks sets up hooks for modules.