Documentation ¶
Index ¶
- Variables
- 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
- type DefaultFeemarketDenomResolver
Constants ¶
This section is empty.
Variables ¶
View Source
var AppModuleBasics = module.NewBasicManager( auth.AppModuleBasic{}, vesting.AppModuleBasic{}, bank.AppModuleBasic{}, capability.AppModuleBasic{}, crisis.AppModuleBasic{}, gov.AppModuleBasic{}, mint.AppModuleBasic{}, slashing.AppModuleBasic{}, distr.AppModuleBasic{}, no_valupdates_staking.AppModuleBasic{}, upgrade.AppModuleBasic{}, evidence.AppModuleBasic{}, feegrantmodule.AppModuleBasic{}, authzmodule.AppModuleBasic{}, ibc.AppModuleBasic{}, ibctm.AppModuleBasic{}, sdkparams.AppModuleBasic{}, consensus.AppModuleBasic{}, wasm.AppModuleBasic{}, feemarket.AppModuleBasic{}, oracle.AppModuleBasic{}, marketmap.AppModuleBasic{}, ibcfee.AppModuleBasic{}, transfer.AppModuleBasic{}, pfmrouter.AppModuleBasic{}, ratelimit.AppModuleBasic{}, icsprovider.AppModuleBasic{}, services.AppModuleBasic{}, operators.AppModuleBasic{}, pools.AppModuleBasic{}, restaking.AppModuleBasic{}, assets.AppModuleBasic{}, rewards.AppModuleBasic{}, liquidvesting.AppModuleBasic{}, )
Functions ¶
This section is empty.
Types ¶
type AppKeepers ¶
type AppKeepers struct { // 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 GroupKeeper groupkeeper.Keeper CrisisKeeper *crisiskeeper.Keeper UpgradeKeeper *upgradekeeper.Keeper ParamsKeeper paramskeeper.Keeper WasmKeeper wasmkeeper.Keeper EvidenceKeeper evidencekeeper.Keeper AuthzKeeper authzkeeper.Keeper ConsensusParamsKeeper consensusparamkeeper.Keeper FeeGrantKeeper feegrantkeeper.Keeper // Skip MarketMapKeeper *marketmapkeeper.Keeper OracleKeeper *oraclekeeper.Keeper FeeMarketKeeper *feemarketkeeper.Keeper // IBC IBCKeeper *ibckeeper.Keeper TransferKeeper ibctransferkeeper.Keeper PFMRouterKeeper *pfmrouterkeeper.Keeper RateLimitKeeper *ratelimitkeeper.Keeper // ICS ProviderKeeper icsproviderkeeper.Keeper // Custom ServicesKeeper *serviceskeeper.Keeper OperatorsKeeper *operatorskeeper.Keeper PoolsKeeper *poolskeeper.Keeper RestakingKeeper *restakingkeeper.Keeper AssetsKeeper *assetskeeper.Keeper RewardsKeeper *rewardskeeper.Keeper LiquidVestingKeeper *liquidvestingkeeper.Keeper // Modules IBCFeeKeeper ibcfeekeeper.Keeper TransferModule transfer.AppModule PFMRouterModule pfmrouter.AppModule RateLimitModule ratelimit.AppModule ProviderModule icsprovider.AppModule // make scoped keepers public for test purposes ScopedIBCKeeper capabilitykeeper.ScopedKeeper ScopedTransferKeeper capabilitykeeper.ScopedKeeper ScopedICSproviderkeeper capabilitykeeper.ScopedKeeper // contains filtered or unexported fields }
func NewAppKeeper ¶
func NewAppKeeper( appCodec codec.Codec, bApp *baseapp.BaseApp, legacyAmino *codec.LegacyAmino, maccPerms map[string][]string, blockedAddress map[string]bool, skipUpgradeHeights map[int64]bool, homePath string, invCheckPeriod uint, logger log.Logger, appOpts servertypes.AppOptions, wasmOpts []wasmkeeper.Option, ) AppKeepers
func (*AppKeepers) GenerateKeys ¶
func (appKeepers *AppKeepers) GenerateKeys()
func (*AppKeepers) GetKVStoreKey ¶
func (appKeepers *AppKeepers) GetKVStoreKey() map[string]*storetypes.KVStoreKey
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
func (*AppKeepers) GetSubspace ¶
func (appKeepers *AppKeepers) GetSubspace(moduleName string) paramstypes.Subspace
GetSubspace returns a param subspace for a given module name.
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
type DefaultFeemarketDenomResolver ¶
type DefaultFeemarketDenomResolver struct{}
func (*DefaultFeemarketDenomResolver) ConvertToDenom ¶
func (*DefaultFeemarketDenomResolver) ExtraDenoms ¶
func (r *DefaultFeemarketDenomResolver) ExtraDenoms(_ sdk.Context) ([]string, error)
Click to show internal directories.
Click to hide internal directories.