Documentation ¶
Index ¶
- Constants
- Variables
- func GetMaccPerms() map[string][]string
- func InitStrideIBCTestingApp() (ibctesting.TestingApp, map[string]json.RawMessage)
- func SetupConfig()
- type EncodingConfig
- type GenesisState
- type StrideApp
- func (app *StrideApp) AppCodec() codec.Codec
- func (app *StrideApp) BeginBlocker(ctx sdk.Context, req abci.RequestBeginBlock) abci.ResponseBeginBlock
- func (app *StrideApp) BlacklistedModuleAccountAddrs() map[string]bool
- func (app *StrideApp) EndBlocker(ctx sdk.Context, req abci.RequestEndBlock) abci.ResponseEndBlock
- func (app *StrideApp) ExportAppStateAndValidators(forZeroHeight bool, jailAllowedAddrs []string) (servertypes.ExportedApp, error)
- func (app *StrideApp) GetBaseApp() *baseapp.BaseApp
- func (app *StrideApp) GetIBCKeeper() *ibckeeper.Keeper
- func (app *StrideApp) GetKey(storeKey string) *storetypes.KVStoreKey
- func (app *StrideApp) GetMemKey(storeKey string) *storetypes.MemoryStoreKey
- func (app *StrideApp) GetScopedIBCKeeper() capabilitykeeper.ScopedKeeper
- func (app *StrideApp) GetStakingKeeper() ibctestingtypes.StakingKeeper
- func (app *StrideApp) GetSubspace(moduleName string) paramstypes.Subspace
- func (app *StrideApp) GetTKey(storeKey string) *storetypes.TransientStoreKey
- func (app *StrideApp) GetTransferKeeper() *ibctransferkeeper.Keeper
- func (app *StrideApp) GetTxConfig() client.TxConfig
- func (app *StrideApp) InitChainer(ctx sdk.Context, req abci.RequestInitChain) abci.ResponseInitChain
- func (app *StrideApp) InterfaceRegistry() types.InterfaceRegistry
- func (app *StrideApp) LegacyAmino() *codec.LegacyAmino
- func (app *StrideApp) LoadHeight(height int64) error
- func (app *StrideApp) ModuleAccountAddrs() map[string]bool
- func (app *StrideApp) Name() string
- func (app *StrideApp) RegisterAPIRoutes(apiSvr *api.Server, apiConfig config.APIConfig)
- func (app *StrideApp) RegisterNodeService(clientCtx client.Context)
- func (app *StrideApp) RegisterTendermintService(clientCtx client.Context)
- func (app *StrideApp) RegisterTxService(clientCtx client.Context)
- func (app *StrideApp) SimulationManager() *module.SimulationManager
Constants ¶
const ( AccountAddressPrefix = "stride" Name = "stride" )
const Bech32Prefix = "stride"
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.NewAppModuleBasic(genutiltypes.DefaultMessageValidator), bank.AppModuleBasic{}, capability.AppModuleBasic{}, staking.AppModuleBasic{}, mint.AppModuleBasic{}, distr.AppModuleBasic{}, gov.NewAppModuleBasic(getGovProposalHandlers()), params.AppModuleBasic{}, crisis.AppModuleBasic{}, slashing.AppModuleBasic{}, feegrantmodule.AppModuleBasic{}, ibc.AppModuleBasic{}, upgrade.AppModuleBasic{}, evidence.AppModuleBasic{}, transfer.AppModuleBasic{}, consensus.AppModuleBasic{}, vesting.AppModuleBasic{}, claimvesting.AppModuleBasic{}, stakeibcmodule.AppModuleBasic{}, epochsmodule.AppModuleBasic{}, interchainquery.AppModuleBasic{}, ica.AppModuleBasic{}, recordsmodule.AppModuleBasic{}, ratelimitmodule.AppModuleBasic{}, icacallbacksmodule.AppModuleBasic{}, claim.AppModuleBasic{}, autopilot.AppModuleBasic{}, tendermint.AppModuleBasic{}, ) )
Functions ¶
func GetMaccPerms ¶
GetMaccPerms returns a copy of the module account permissions
func InitStrideIBCTestingApp ¶
func InitStrideIBCTestingApp() (ibctesting.TestingApp, map[string]json.RawMessage)
Initializes a new Stride App casted as a TestingApp for IBC support
func SetupConfig ¶
func SetupConfig()
Types ¶
type EncodingConfig ¶
type EncodingConfig struct { InterfaceRegistry types.InterfaceRegistry Marshaler codec.Codec TxConfig client.TxConfig Amino *codec.LegacyAmino }
This data structure (EncodingConfig) is heavily inspired by Quicksilver. https://github.com/ingenuity-build/quicksilver/blob/main/app/encoding.go
func MakeEncodingConfig ¶
func MakeEncodingConfig() EncodingConfig
MakeEncodingConfig creates an EncodingConfig for an amino based test configuration.
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 GenesisStateWithValSet ¶
func GenesisStateWithValSet(app *StrideApp) GenesisState
func NewDefaultGenesisState ¶
func NewDefaultGenesisState() GenesisState
NewDefaultGenesisState generates the default state for the application.
type StrideApp ¶
type StrideApp 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 ConsensusParamsKeeper consensusparamkeeper.Keeper CrisisKeeper *crisiskeeper.Keeper UpgradeKeeper *upgradekeeper.Keeper ParamsKeeper paramskeeper.Keeper IBCKeeper *ibckeeper.Keeper // IBC Keeper must be a pointer in the app, so we can SetRouter on it correctly EvidenceKeeper evidencekeeper.Keeper TransferKeeper ibctransferkeeper.Keeper FeeGrantKeeper feegrantkeeper.Keeper // MonitoringKeeper monitoringpkeeper.Keeper ICAControllerKeeper icacontrollerkeeper.Keeper ICAHostKeeper icahostkeeper.Keeper AutopilotKeeper autopilotkeeper.Keeper // make scoped keepers public for test purposes ScopedIBCKeeper capabilitykeeper.ScopedKeeper ScopedTransferKeeper capabilitykeeper.ScopedKeeper // ScopedMonitoringKeeper capabilitykeeper.ScopedKeeper ScopedICAControllerKeeper capabilitykeeper.ScopedKeeper ScopedICAHostKeeper capabilitykeeper.ScopedKeeper ScopedStakeibcKeeper capabilitykeeper.ScopedKeeper StakeibcKeeper stakeibcmodulekeeper.Keeper EpochsKeeper epochsmodulekeeper.Keeper InterchainqueryKeeper interchainquerykeeper.Keeper ScopedRecordsKeeper capabilitykeeper.ScopedKeeper RecordsKeeper recordsmodulekeeper.Keeper IcacallbacksKeeper icacallbacksmodulekeeper.Keeper ScopedratelimitKeeper capabilitykeeper.ScopedKeeper RatelimitKeeper ratelimitmodulekeeper.Keeper ClaimKeeper claimkeeper.Keeper // contains filtered or unexported fields }
StrideApp 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 InitStrideTestApp ¶
Initializes a new StrideApp without IBC functionality
func NewStrideApp ¶
func NewStrideApp( logger log.Logger, db dbm.DB, traceStore io.Writer, loadLatest bool, skipUpgradeHeights map[int64]bool, homePath string, invCheckPeriod uint, encodingConfig EncodingConfig, appOpts servertypes.AppOptions, baseAppOptions ...func(*baseapp.BaseApp), ) *StrideApp
RUN GOSEC New returns a reference to an initialized blockchain app
func (*StrideApp) AppCodec ¶
AppCodec returns an 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 (*StrideApp) BeginBlocker ¶
func (app *StrideApp) BeginBlocker(ctx sdk.Context, req abci.RequestBeginBlock) abci.ResponseBeginBlock
BeginBlocker application updates every begin block
func (*StrideApp) BlacklistedModuleAccountAddrs ¶
ModuleAccountAddrs returns all the app's module account addresses.
func (*StrideApp) EndBlocker ¶
func (app *StrideApp) EndBlocker(ctx sdk.Context, req abci.RequestEndBlock) abci.ResponseEndBlock
EndBlocker application updates every end block
func (*StrideApp) ExportAppStateAndValidators ¶
func (app *StrideApp) ExportAppStateAndValidators( forZeroHeight bool, jailAllowedAddrs []string, ) (servertypes.ExportedApp, error)
ExportAppStateAndValidators exports the state of the application for a genesis file.
func (*StrideApp) GetBaseApp ¶
GetBaseApp returns the base app of the application
func (*StrideApp) GetIBCKeeper ¶
GetIBCKeeper implements the TestingApp interface.
func (*StrideApp) GetKey ¶
func (app *StrideApp) 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 (*StrideApp) GetMemKey ¶
func (app *StrideApp) GetMemKey(storeKey string) *storetypes.MemoryStoreKey
GetMemKey returns the MemStoreKey for the provided mem key.
NOTE: This is solely used for testing purposes.
func (*StrideApp) GetScopedIBCKeeper ¶
func (app *StrideApp) GetScopedIBCKeeper() capabilitykeeper.ScopedKeeper
GetScopedIBCKeeper implements the TestingApp interface.
func (*StrideApp) GetStakingKeeper ¶
func (app *StrideApp) GetStakingKeeper() ibctestingtypes.StakingKeeper
GetStakingKeeper implements the TestingApp interface.
func (*StrideApp) GetSubspace ¶
func (app *StrideApp) 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 (*StrideApp) GetTKey ¶
func (app *StrideApp) 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 (*StrideApp) GetTransferKeeper ¶
func (app *StrideApp) GetTransferKeeper() *ibctransferkeeper.Keeper
GetIBCKeeper implements the TestingApp interface.
func (*StrideApp) GetTxConfig ¶
GetTxConfig implements the TestingApp interface.
func (*StrideApp) InitChainer ¶
func (app *StrideApp) InitChainer(ctx sdk.Context, req abci.RequestInitChain) abci.ResponseInitChain
InitChainer application update at chain initialization
func (*StrideApp) InterfaceRegistry ¶
func (app *StrideApp) InterfaceRegistry() types.InterfaceRegistry
InterfaceRegistry returns an InterfaceRegistry
func (*StrideApp) LegacyAmino ¶
func (app *StrideApp) LegacyAmino() *codec.LegacyAmino
LegacyAmino returns SimApp'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 (*StrideApp) LoadHeight ¶
LoadHeight loads a particular height
func (*StrideApp) ModuleAccountAddrs ¶
ModuleAccountAddrs returns all the app's module account addresses.
func (*StrideApp) RegisterAPIRoutes ¶
RegisterAPIRoutes registers all application module routes with the provided API server.
func (*StrideApp) RegisterNodeService ¶
RegisterNodeService registers the node gRPC Query service.
func (*StrideApp) RegisterTendermintService ¶
RegisterTendermintService implements the Application.RegisterTendermintService method.
func (*StrideApp) RegisterTxService ¶
RegisterTxService implements the Application.RegisterTxService method.
func (*StrideApp) SimulationManager ¶
func (app *StrideApp) SimulationManager() *module.SimulationManager
SimulationManager implements the SimulationApp interface