Documentation
¶
Index ¶
- Variables
- func AddTestAddrsIncremental(app *WasmStationApp, ctx sdk.Context, accNum int, accAmt sdkmath.Int) []sdk.AccAddress
- func AllCapabilities() []string
- func BlockedAddresses() map[string]bool
- func GenesisStateWithValSet(codec codec.Codec, genesisState map[string]json.RawMessage, ...) (map[string]json.RawMessage, error)
- func GetMaccPerms() map[string][]string
- func MakeEncodingConfig(t testing.TB) params.EncodingConfig
- func NewAnteHandler(options HandlerOptions) (sdk.AnteHandler, error)
- func NewTestNetworkFixture() network.TestFixture
- func SignAndDeliverWithoutCommit(t *testing.T, txCfg client.TxConfig, app *bam.BaseApp, msgs []sdk.Msg, ...) (*abci.ResponseFinalizeBlock, error)
- type GenesisState
- type HandlerOptions
- type SetupOptions
- type WasmStationApp
- func NewWasmAppWithCustomOptions(t *testing.T, isCheckTx bool, options SetupOptions) *WasmStationApp
- func NewWasmStationApp(logger log.Logger, db dbm.DB, traceStore io.Writer, loadLatest bool, ...) *WasmStationApp
- func Setup(t *testing.T, opts ...wasmkeeper.Option) *WasmStationApp
- func SetupWithEmptyStore(t testing.TB) *WasmStationApp
- func SetupWithGenesisValSet(t *testing.T, valSet *cmttypes.ValidatorSet, ...) *WasmStationApp
- func (app *WasmStationApp) AppCodec() codec.Codec
- func (app *WasmStationApp) AutoCliOpts() autocli.AppOptions
- func (app *WasmStationApp) BeginBlocker(ctx sdk.Context) (sdk.BeginBlock, error)
- func (a *WasmStationApp) Configurator() module.Configurator
- func (a *WasmStationApp) DefaultGenesis() map[string]json.RawMessage
- func (app *WasmStationApp) EndBlocker(ctx sdk.Context) (sdk.EndBlock, error)
- func (app *WasmStationApp) ExportAppStateAndValidators(forZeroHeight bool, jailAllowedAddrs, modulesToExport []string) (servertypes.ExportedApp, error)
- func (app *WasmStationApp) FinalizeBlock(req *abci.RequestFinalizeBlock) (*abci.ResponseFinalizeBlock, error)
- func (app *WasmStationApp) GetAccountKeeper() authkeeper.AccountKeeper
- func (app *WasmStationApp) GetBankKeeper() bankkeeper.Keeper
- func (app *WasmStationApp) GetBaseApp() *baseapp.BaseApp
- func (app *WasmStationApp) GetIBCKeeper() *ibckeeper.Keeper
- func (app *WasmStationApp) GetKey(storeKey string) *storetypes.KVStoreKey
- func (app *WasmStationApp) GetMemKey(storeKey string) *storetypes.MemoryStoreKey
- func (app *WasmStationApp) GetScopedIBCKeeper() capabilitykeeper.ScopedKeeper
- func (app *WasmStationApp) GetStakingKeeper() *stakingkeeper.Keeper
- func (app *WasmStationApp) GetStoreKeys() []storetypes.StoreKey
- func (app *WasmStationApp) GetSubspace(moduleName string) paramstypes.Subspace
- func (app *WasmStationApp) GetTKey(storeKey string) *storetypes.TransientStoreKey
- func (app *WasmStationApp) GetWasmKeeper() wasmkeeper.Keeper
- func (app *WasmStationApp) InitChainer(ctx sdk.Context, req *abci.RequestInitChain) (*abci.ResponseInitChain, error)
- func (app *WasmStationApp) InterfaceRegistry() types.InterfaceRegistry
- func (app *WasmStationApp) LegacyAmino() *codec.LegacyAmino
- func (app *WasmStationApp) LoadHeight(height int64) error
- func (app *WasmStationApp) Name() string
- func (app *WasmStationApp) PreBlocker(ctx sdk.Context, _ *abci.RequestFinalizeBlock) (*sdk.ResponsePreBlock, error)
- func (app *WasmStationApp) RegisterAPIRoutes(apiSvr *api.Server, apiConfig config.APIConfig)
- func (app *WasmStationApp) RegisterNodeService(clientCtx client.Context, cfg config.Config)
- func (app *WasmStationApp) RegisterTendermintService(clientCtx client.Context)
- func (app *WasmStationApp) RegisterTxService(clientCtx client.Context)
- func (app *WasmStationApp) RegisterUpgradeHandlers()
- func (app *WasmStationApp) SimulationManager() *module.SimulationManager
- func (app *WasmStationApp) TxConfig() client.TxConfig
Constants ¶
This section is empty.
Variables ¶
var ( NodeDir = ".wasmstationd" Bech32Prefix = "wasmstation" )
We pull these out so we can set them with LDFLAGS in the Makefile
var ( // DefaultNodeHome default home directories for WasmStationd DefaultNodeHome = os.ExpandEnv("$HOME/") + NodeDir // Bech32PrefixAccAddr defines the Bech32 prefix of an account's address Bech32PrefixAccAddr = Bech32Prefix // Bech32PrefixAccPub defines the Bech32 prefix of an account's public key Bech32PrefixAccPub = Bech32Prefix + sdk.PrefixPublic // Bech32PrefixValAddr defines the Bech32 prefix of a validator's operator address Bech32PrefixValAddr = Bech32Prefix + sdk.PrefixValidator + sdk.PrefixOperator // Bech32PrefixValPub defines the Bech32 prefix of a validator's operator public key Bech32PrefixValPub = Bech32Prefix + sdk.PrefixValidator + sdk.PrefixOperator + sdk.PrefixPublic // Bech32PrefixConsAddr defines the Bech32 prefix of a consensus node address Bech32PrefixConsAddr = Bech32Prefix + sdk.PrefixValidator + sdk.PrefixConsensus // Bech32PrefixConsPub defines the Bech32 prefix of a consensus node public key Bech32PrefixConsPub = Bech32Prefix + sdk.PrefixValidator + sdk.PrefixConsensus + sdk.PrefixPublic )
These constants are derived from the above variables. These are the ones we will want to use in the code, based on any overrides above
var Upgrades = []upgrades.Upgrade{v050.Upgrade}
Upgrades list of chain upgrades
Functions ¶
func AddTestAddrsIncremental ¶
func AddTestAddrsIncremental(app *WasmStationApp, ctx sdk.Context, accNum int, accAmt sdkmath.Int) []sdk.AccAddress
AddTestAddrsIncremental constructs and returns accNum amount of accounts with an initial balance of accAmt in random order
func AllCapabilities ¶
func AllCapabilities() []string
AllCapabilities returns all capabilities available with the current wasmvm See https://github.com/CosmWasm/cosmwasm/blob/main/docs/CAPABILITIES-BUILT-IN.md This functionality is going to be moved upstream: https://github.com/CosmWasm/wasmvm/issues/425
func BlockedAddresses ¶
BlockedAddresses returns all the app's blocked account addresses.
func GenesisStateWithValSet ¶
func GenesisStateWithValSet( codec codec.Codec, genesisState map[string]json.RawMessage, valSet *cmttypes.ValidatorSet, genAccs []authtypes.GenesisAccount, balances ...banktypes.Balance, ) (map[string]json.RawMessage, error)
GenesisStateWithValSet returns a new genesis state with the validator set copied from simtestutil with delegation not added to supply
func GetMaccPerms ¶
GetMaccPerms returns a copy of the module account permissions
NOTE: This is solely to be used for testing purposes.
func MakeEncodingConfig ¶
func MakeEncodingConfig(t testing.TB) params.EncodingConfig
MakeEncodingConfig creates a new EncodingConfig with all modules registered. For testing only
func NewAnteHandler ¶
func NewAnteHandler(options HandlerOptions) (sdk.AnteHandler, error)
NewAnteHandler constructor
func NewTestNetworkFixture ¶
func NewTestNetworkFixture() network.TestFixture
NewTestNetworkFixture returns a new WasmStationApp AppConstructor for network simulation tests
func SignAndDeliverWithoutCommit ¶
func SignAndDeliverWithoutCommit(t *testing.T, txCfg client.TxConfig, app *bam.BaseApp, msgs []sdk.Msg, fees sdk.Coins, chainID string, accNums, accSeqs []uint64, blockTime time.Time, priv ...cryptotypes.PrivKey) (*abci.ResponseFinalizeBlock, error)
SignAndDeliverWithoutCommit signs and delivers a transaction. No commit
Types ¶
type GenesisState ¶
type GenesisState map[string]json.RawMessage
GenesisState 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 GenesisStateWithSingleValidator ¶
func GenesisStateWithSingleValidator(t *testing.T, app *WasmStationApp) GenesisState
GenesisStateWithSingleValidator initializes GenesisState with a single validator and genesis accounts that also act as delegators.
type HandlerOptions ¶
type HandlerOptions struct { ante.HandlerOptions IBCKeeper *keeper.Keeper WasmConfig *wasmTypes.WasmConfig WasmKeeper *wasmkeeper.Keeper TXCounterStoreService corestoretypes.KVStoreService CircuitKeeper *circuitkeeper.Keeper }
HandlerOptions extend the SDK's AnteHandler options by requiring the IBC channel keeper.
type SetupOptions ¶
type SetupOptions struct { Logger log.Logger DB *dbm.MemDB AppOpts servertypes.AppOptions WasmOpts []wasmkeeper.Option }
SetupOptions defines arguments that are passed into `WasmStationApp` constructor.
type WasmStationApp ¶
type WasmStationApp struct { *baseapp.BaseApp // 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 CrisisKeeper *crisiskeeper.Keeper UpgradeKeeper *upgradekeeper.Keeper ParamsKeeper paramskeeper.Keeper AuthzKeeper authzkeeper.Keeper EvidenceKeeper evidencekeeper.Keeper FeeGrantKeeper feegrantkeeper.Keeper GroupKeeper groupkeeper.Keeper NFTKeeper nftkeeper.Keeper ConsensusParamsKeeper consensusparamkeeper.Keeper CircuitKeeper circuitkeeper.Keeper IBCKeeper *ibckeeper.Keeper // IBC Keeper must be a pointer in the app, so we can SetRouter on it correctly IBCFeeKeeper ibcfeekeeper.Keeper ICAControllerKeeper icacontrollerkeeper.Keeper ICAHostKeeper icahostkeeper.Keeper TransferKeeper ibctransferkeeper.Keeper WasmKeeper wasmkeeper.Keeper ScopedIBCKeeper capabilitykeeper.ScopedKeeper ScopedICAHostKeeper capabilitykeeper.ScopedKeeper ScopedICAControllerKeeper capabilitykeeper.ScopedKeeper ScopedTransferKeeper capabilitykeeper.ScopedKeeper ScopedIBCFeeKeeper capabilitykeeper.ScopedKeeper ScopedWasmKeeper capabilitykeeper.ScopedKeeper // the module manager ModuleManager *module.Manager BasicModuleManager module.BasicManager // contains filtered or unexported fields }
WasmStationApp extended ABCI application
func NewWasmAppWithCustomOptions ¶
func NewWasmAppWithCustomOptions(t *testing.T, isCheckTx bool, options SetupOptions) *WasmStationApp
NewWasmAppWithCustomOptions initializes a new WasmStationApp with custom options.
func NewWasmStationApp ¶
func NewWasmStationApp( logger log.Logger, db dbm.DB, traceStore io.Writer, loadLatest bool, appOpts servertypes.AppOptions, wasmOpts []wasmkeeper.Option, baseAppOptions ...func(*baseapp.BaseApp), ) *WasmStationApp
NewWasmStationApp returns a reference to an initialized WasmStationApp.
func Setup ¶
func Setup(t *testing.T, opts ...wasmkeeper.Option) *WasmStationApp
Setup initializes a new WasmStationApp. A Nop logger is set in WasmStationApp.
func SetupWithEmptyStore ¶
func SetupWithEmptyStore(t testing.TB) *WasmStationApp
SetupWithEmptyStore set up a WasmStationd app instance with empty DB
func SetupWithGenesisValSet ¶
func SetupWithGenesisValSet( t *testing.T, valSet *cmttypes.ValidatorSet, genAccs []authtypes.GenesisAccount, chainID string, opts []wasmkeeper.Option, balances ...banktypes.Balance, ) *WasmStationApp
SetupWithGenesisValSet initializes a new WasmStationApp with a validator set and genesis accounts that also act as delegators. For simplicity, each validator is bonded with a delegation of one consensus engine unit in the default token of the WasmStationApp from first genesis account. A Nop logger is set in WasmStationApp.
func (*WasmStationApp) AppCodec ¶
func (app *WasmStationApp) AppCodec() codec.Codec
AppCodec returns 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 (*WasmStationApp) AutoCliOpts ¶
func (app *WasmStationApp) AutoCliOpts() autocli.AppOptions
AutoCliOpts returns the autocli options for the app.
func (*WasmStationApp) BeginBlocker ¶
func (app *WasmStationApp) BeginBlocker(ctx sdk.Context) (sdk.BeginBlock, error)
BeginBlocker application updates every begin block
func (*WasmStationApp) Configurator ¶
func (a *WasmStationApp) Configurator() module.Configurator
func (*WasmStationApp) DefaultGenesis ¶
func (a *WasmStationApp) DefaultGenesis() map[string]json.RawMessage
DefaultGenesis returns a default genesis from the registered AppModuleBasic's.
func (*WasmStationApp) EndBlocker ¶
EndBlocker application updates every end block
func (*WasmStationApp) ExportAppStateAndValidators ¶
func (app *WasmStationApp) ExportAppStateAndValidators(forZeroHeight bool, jailAllowedAddrs, modulesToExport []string) (servertypes.ExportedApp, error)
ExportAppStateAndValidators exports the state of the application for a genesis file.
func (*WasmStationApp) FinalizeBlock ¶
func (app *WasmStationApp) FinalizeBlock(req *abci.RequestFinalizeBlock) (*abci.ResponseFinalizeBlock, error)
func (*WasmStationApp) GetAccountKeeper ¶
func (app *WasmStationApp) GetAccountKeeper() authkeeper.AccountKeeper
func (*WasmStationApp) GetBankKeeper ¶
func (app *WasmStationApp) GetBankKeeper() bankkeeper.Keeper
func (*WasmStationApp) GetBaseApp ¶
func (app *WasmStationApp) GetBaseApp() *baseapp.BaseApp
func (*WasmStationApp) GetIBCKeeper ¶
func (app *WasmStationApp) GetIBCKeeper() *ibckeeper.Keeper
func (*WasmStationApp) GetKey ¶
func (app *WasmStationApp) 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 (*WasmStationApp) GetMemKey ¶
func (app *WasmStationApp) GetMemKey(storeKey string) *storetypes.MemoryStoreKey
GetMemKey returns the MemStoreKey for the provided mem key.
NOTE: This is solely used for testing purposes.
func (*WasmStationApp) GetScopedIBCKeeper ¶
func (app *WasmStationApp) GetScopedIBCKeeper() capabilitykeeper.ScopedKeeper
func (*WasmStationApp) GetStakingKeeper ¶
func (app *WasmStationApp) GetStakingKeeper() *stakingkeeper.Keeper
func (*WasmStationApp) GetStoreKeys ¶
func (app *WasmStationApp) GetStoreKeys() []storetypes.StoreKey
GetStoreKeys returns all the stored store keys.
func (*WasmStationApp) GetSubspace ¶
func (app *WasmStationApp) 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 (*WasmStationApp) GetTKey ¶
func (app *WasmStationApp) 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 (*WasmStationApp) GetWasmKeeper ¶
func (app *WasmStationApp) GetWasmKeeper() wasmkeeper.Keeper
func (*WasmStationApp) InitChainer ¶
func (app *WasmStationApp) InitChainer(ctx sdk.Context, req *abci.RequestInitChain) (*abci.ResponseInitChain, error)
InitChainer application update at chain initialization
func (*WasmStationApp) InterfaceRegistry ¶
func (app *WasmStationApp) InterfaceRegistry() types.InterfaceRegistry
InterfaceRegistry returns WasmStationApp's InterfaceRegistry
func (*WasmStationApp) LegacyAmino ¶
func (app *WasmStationApp) LegacyAmino() *codec.LegacyAmino
LegacyAmino returns legacy 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 (*WasmStationApp) LoadHeight ¶
func (app *WasmStationApp) LoadHeight(height int64) error
LoadHeight loads a particular height
func (*WasmStationApp) Name ¶
func (app *WasmStationApp) Name() string
Name returns the name of the App
func (*WasmStationApp) PreBlocker ¶
func (app *WasmStationApp) PreBlocker(ctx sdk.Context, _ *abci.RequestFinalizeBlock) (*sdk.ResponsePreBlock, error)
PreBlocker application updates every pre block
func (*WasmStationApp) RegisterAPIRoutes ¶
func (app *WasmStationApp) RegisterAPIRoutes(apiSvr *api.Server, apiConfig config.APIConfig)
RegisterAPIRoutes registers all application module routes with the provided API server.
func (*WasmStationApp) RegisterNodeService ¶
func (app *WasmStationApp) RegisterNodeService(clientCtx client.Context, cfg config.Config)
func (*WasmStationApp) RegisterTendermintService ¶
func (app *WasmStationApp) RegisterTendermintService(clientCtx client.Context)
RegisterTendermintService implements the Application.RegisterTendermintService method.
func (*WasmStationApp) RegisterTxService ¶
func (app *WasmStationApp) RegisterTxService(clientCtx client.Context)
RegisterTxService implements the Application.RegisterTxService method.
func (*WasmStationApp) RegisterUpgradeHandlers ¶
func (app *WasmStationApp) RegisterUpgradeHandlers()
RegisterUpgradeHandlers registers the chain upgrade handlers
func (*WasmStationApp) SimulationManager ¶
func (app *WasmStationApp) SimulationManager() *module.SimulationManager
SimulationManager implements the SimulationApp interface
func (*WasmStationApp) TxConfig ¶
func (app *WasmStationApp) TxConfig() client.TxConfig
TxConfig returns WasmStationApp's TxConfig