Documentation ¶
Index ¶
- Constants
- func BlockedAddresses(maccPerms map[string][]string) map[string]bool
- func GetMaccPerms(maccPerms map[string][]string) map[string][]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
Constants ¶
View Source
const (
// AccountAddressPrefix prefix used for generating account address
AccountAddressPrefix = "sge"
)
Variables ¶
This section is empty.
Functions ¶
func BlockedAddresses ¶ added in v1.4.5
BlockedAddresses returns all the app's blocked account addresses.
Types ¶
type AppKeepers ¶
type AppKeepers struct { // SDK keepers AccountKeeper authkeeper.AccountKeeper BankKeeper bankkeeper.Keeper CapabilityKeeper *capabilitykeeper.Keeper StakingKeeper *stakingkeeper.Keeper SlashingKeeper slashingkeeper.Keeper DistrKeeper distrkeeper.Keeper GovKeeper *govkeeper.Keeper CrisisKeeper *crisiskeeper.Keeper UpgradeKeeper *upgradekeeper.Keeper ParamsKeeper paramskeeper.Keeper EvidenceKeeper evidencekeeper.Keeper TransferKeeper ibctransferkeeper.Keeper FeeGrantKeeper feegrantkeeper.Keeper AuthzKeeper authzkeeper.Keeper GroupKeeper groupkeeper.Keeper ConsensusParamsKeeper consensusparamkeeper.Keeper //// CosmWasm keepers \\\\ ContractKeeper wasmtypes.ContractOpsKeeper WasmClientKeeper ibcwasmkeeper.Keeper WasmKeeper wasmkeeper.Keeper ScopedWasmKeeper capabilitykeeper.ScopedKeeper //// SGE keepers \\\\ BetKeeper *betmodulekeeper.Keeper MarketKeeper *marketmodulekeeper.Keeper MintKeeper mintkeeper.Keeper HouseKeeper *housemodulekeeper.Keeper OrderbookKeeper *orderbookmodulekeeper.Keeper OVMKeeper *ovmmodulekeeper.Keeper RewardKeeper *rewardmodulekeeper.Keeper SubaccountKeeper *subaccountmodulekeeper.Keeper //// SGE modules \\\\ BetModule betmodule.AppModule MarketModule marketmodule.AppModule HouseModule housemodule.AppModule OrderbookModule orderbookmodule.AppModule OVMModule ovmmodule.AppModule RewardModule rewardmodule.AppModule SubaccountModule subaccountmodule.AppModule // make scoped keepers public for test purposes ScopedIBCKeeper capabilitykeeper.ScopedKeeper ScopedTransferKeeper capabilitykeeper.ScopedKeeper ScopedIBCFeeKeeper capabilitykeeper.ScopedKeeper ScopedICAControllerKeeper capabilitykeeper.ScopedKeeper ScopedICAHostKeeper capabilitykeeper.ScopedKeeper // IBC Keepers IBCKeeper *ibckeeper.Keeper // IBC Keeper must be a pointer in the app, so we can SetRouter on it correctly IBCFeeKeeper ibcfeekeeper.Keeper IBCHooksKeeper *ibchookskeeper.Keeper ICAControllerKeeper icacontrollerkeeper.Keeper ICAHostKeeper icahostkeeper.Keeper // IBC Modules IBCModule ibc.AppModule ICAModule ica.AppModule TransferModule transfer.AppModule IBCFeeModule ibcfee.AppModule Ics20WasmHooks *ibc_hooks.WasmHooks HooksICS4Wrapper ibc_hooks.ICS4Middleware // contains filtered or unexported fields }
func NewAppKeeper ¶
func NewAppKeeper( appCodec codec.Codec, bApp *baseapp.BaseApp, cdc *codec.LegacyAmino, maccPerms map[string][]string, skipUpgradeHeights map[int64]bool, homePath string, invCheckPeriod uint, wasmOpts []wasmkeeper.Option, appOpts servertypes.AppOptions, ) 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
Click to show internal directories.
Click to hide internal directories.