Documentation ¶
Index ¶
- Variables
- func AddTestAddrsIncremental(app *WasmApp, 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 WasmApp
- func NewWasmApp(logger log.Logger, db dbm.DB, traceStore io.Writer, loadLatest bool, ...) *WasmApp
- func NewWasmAppWithCustomOptions(t *testing.T, isCheckTx bool, options SetupOptions) *WasmApp
- func Setup(t *testing.T, opts ...wasmkeeper.Option) *WasmApp
- func SetupWithEmptyStore(t testing.TB) *WasmApp
- func SetupWithGenesisValSet(t *testing.T, valSet *cmttypes.ValidatorSet, ...) *WasmApp
- func (app *WasmApp) AppCodec() codec.Codec
- func (app *WasmApp) AutoCliOpts() autocli.AppOptions
- func (app *WasmApp) BeginBlocker(ctx sdk.Context) (sdk.BeginBlock, error)
- func (a *WasmApp) Configurator() module.Configurator
- func (a *WasmApp) DefaultGenesis() map[string]json.RawMessage
- func (app *WasmApp) EndBlocker(ctx sdk.Context) (sdk.EndBlock, error)
- func (app *WasmApp) ExportAppStateAndValidators(forZeroHeight bool, jailAllowedAddrs, modulesToExport []string) (servertypes.ExportedApp, error)
- func (app *WasmApp) GetAccountKeeper() authkeeper.AccountKeeper
- func (app *WasmApp) GetBankKeeper() bankkeeper.Keeper
- func (app *WasmApp) GetBaseApp() *baseapp.BaseApp
- func (app *WasmApp) GetIBCKeeper() *ibckeeper.Keeper
- func (app *WasmApp) GetKey(storeKey string) *storetypes.KVStoreKey
- func (app *WasmApp) GetMemKey(storeKey string) *storetypes.MemoryStoreKey
- func (app *WasmApp) GetScopedIBCKeeper() capabilitykeeper.ScopedKeeper
- func (app *WasmApp) GetStakingKeeper() *stakingkeeper.Keeper
- func (app *WasmApp) GetStoreKeys() []storetypes.StoreKey
- func (app *WasmApp) GetSubspace(moduleName string) paramstypes.Subspace
- func (app *WasmApp) GetTKey(storeKey string) *storetypes.TransientStoreKey
- func (app *WasmApp) GetWasmKeeper() wasmkeeper.Keeper
- func (app *WasmApp) InitChainer(ctx sdk.Context, req *abci.RequestInitChain) (*abci.ResponseInitChain, error)
- func (app *WasmApp) InterfaceRegistry() types.InterfaceRegistry
- func (app *WasmApp) LegacyAmino() *codec.LegacyAmino
- func (app *WasmApp) LoadHeight(height int64) error
- func (app *WasmApp) Name() string
- func (app *WasmApp) PreBlocker(ctx sdk.Context, _ *abci.RequestFinalizeBlock) (*sdk.ResponsePreBlock, error)
- func (app *WasmApp) RegisterAPIRoutes(apiSvr *api.Server, apiConfig config.APIConfig)
- func (app *WasmApp) RegisterNodeService(clientCtx client.Context, cfg config.Config)
- func (app *WasmApp) RegisterTendermintService(clientCtx client.Context)
- func (app *WasmApp) RegisterTxService(clientCtx client.Context)
- func (app WasmApp) RegisterUpgradeHandlers()
- func (app *WasmApp) SimulationManager() *module.SimulationManager
- func (app *WasmApp) TxConfig() client.TxConfig
Constants ¶
This section is empty.
Variables ¶
var ( NodeDir = ".wasmd" Bech32Prefix = "wasm" )
We pull these out so we can set them with LDFLAGS in the Makefile
var ( // DefaultNodeHome default home directories for wasmd 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 ¶ added in v0.16.0
func AddTestAddrsIncremental(app *WasmApp, 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 ¶ added in v0.32.0
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 ¶ added in v0.40.0
BlockedAddresses returns all the app's blocked account addresses.
func GenesisStateWithValSet ¶ added in v0.40.0
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 ¶ added in v0.12.0
func MakeEncodingConfig(t testing.TB) params.EncodingConfig
MakeEncodingConfig creates a new EncodingConfig with all modules registered. For testing only
func NewAnteHandler ¶ added in v0.20.0
func NewAnteHandler(options HandlerOptions) (sdk.AnteHandler, error)
NewAnteHandler constructor
func NewTestNetworkFixture ¶ added in v0.40.0
func NewTestNetworkFixture() network.TestFixture
NewTestNetworkFixture returns a new WasmApp AppConstructor for network simulation tests
func SignAndDeliverWithoutCommit ¶ added in v0.40.0
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 ¶ added in v0.40.0
func GenesisStateWithSingleValidator(t *testing.T, app *WasmApp) GenesisState
GenesisStateWithSingleValidator initializes GenesisState with a single validator and genesis accounts that also act as delegators.
type HandlerOptions ¶ added in v0.22.0
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 ¶ added in v0.40.0
type SetupOptions struct { Logger log.Logger DB *dbm.MemDB AppOpts servertypes.AppOptions WasmOpts []wasmkeeper.Option }
SetupOptions defines arguments that are passed into `WasmApp` constructor.
type WasmApp ¶
type WasmApp 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 }
WasmApp extended ABCI application
func NewWasmApp ¶
func NewWasmApp( logger log.Logger, db dbm.DB, traceStore io.Writer, loadLatest bool, appOpts servertypes.AppOptions, wasmOpts []wasmkeeper.Option, baseAppOptions ...func(*baseapp.BaseApp), ) *WasmApp
NewWasmApp returns a reference to an initialized WasmApp.
func NewWasmAppWithCustomOptions ¶ added in v0.40.0
func NewWasmAppWithCustomOptions(t *testing.T, isCheckTx bool, options SetupOptions) *WasmApp
NewWasmAppWithCustomOptions initializes a new WasmApp with custom options.
func Setup ¶ added in v0.16.0
func Setup(t *testing.T, opts ...wasmkeeper.Option) *WasmApp
Setup initializes a new WasmApp. A Nop logger is set in WasmApp.
func SetupWithEmptyStore ¶ added in v0.27.0
SetupWithEmptyStore set up a wasmd app instance with empty DB
func SetupWithGenesisValSet ¶ added in v0.16.0
func SetupWithGenesisValSet( t *testing.T, valSet *cmttypes.ValidatorSet, genAccs []authtypes.GenesisAccount, chainID string, opts []wasmkeeper.Option, balances ...banktypes.Balance, ) *WasmApp
SetupWithGenesisValSet initializes a new WasmApp 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 WasmApp from first genesis account. A Nop logger is set in WasmApp.
func (*WasmApp) AppCodec ¶ added in v0.16.0
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 (*WasmApp) AutoCliOpts ¶ added in v0.50.0
func (app *WasmApp) AutoCliOpts() autocli.AppOptions
AutoCliOpts returns the autocli options for the app.
func (*WasmApp) BeginBlocker ¶
BeginBlocker application updates every begin block
func (*WasmApp) Configurator ¶ added in v0.40.0
func (a *WasmApp) Configurator() module.Configurator
func (*WasmApp) DefaultGenesis ¶ added in v0.40.0
func (a *WasmApp) DefaultGenesis() map[string]json.RawMessage
DefaultGenesis returns a default genesis from the registered AppModuleBasic's.
func (*WasmApp) EndBlocker ¶
EndBlocker application updates every end block
func (*WasmApp) ExportAppStateAndValidators ¶
func (app *WasmApp) ExportAppStateAndValidators(forZeroHeight bool, jailAllowedAddrs, modulesToExport []string) (servertypes.ExportedApp, error)
ExportAppStateAndValidators exports the state of the application for a genesis file.
func (*WasmApp) GetAccountKeeper ¶ added in v0.40.0
func (app *WasmApp) GetAccountKeeper() authkeeper.AccountKeeper
func (*WasmApp) GetBankKeeper ¶ added in v0.40.0
func (app *WasmApp) GetBankKeeper() bankkeeper.Keeper
func (*WasmApp) GetBaseApp ¶ added in v0.40.0
func (*WasmApp) GetIBCKeeper ¶ added in v0.40.0
func (*WasmApp) GetKey ¶ added in v0.40.0
func (app *WasmApp) 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 (*WasmApp) GetMemKey ¶ added in v0.40.0
func (app *WasmApp) GetMemKey(storeKey string) *storetypes.MemoryStoreKey
GetMemKey returns the MemStoreKey for the provided mem key.
NOTE: This is solely used for testing purposes.
func (*WasmApp) GetScopedIBCKeeper ¶ added in v0.40.0
func (app *WasmApp) GetScopedIBCKeeper() capabilitykeeper.ScopedKeeper
func (*WasmApp) GetStakingKeeper ¶ added in v0.40.0
func (app *WasmApp) GetStakingKeeper() *stakingkeeper.Keeper
func (*WasmApp) GetStoreKeys ¶ added in v0.50.0
func (app *WasmApp) GetStoreKeys() []storetypes.StoreKey
GetStoreKeys returns all the stored store keys.
func (*WasmApp) GetSubspace ¶ added in v0.40.0
func (app *WasmApp) 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 (*WasmApp) GetTKey ¶ added in v0.40.0
func (app *WasmApp) 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 (*WasmApp) GetWasmKeeper ¶ added in v0.40.0
func (app *WasmApp) GetWasmKeeper() wasmkeeper.Keeper
func (*WasmApp) InitChainer ¶
func (app *WasmApp) InitChainer(ctx sdk.Context, req *abci.RequestInitChain) (*abci.ResponseInitChain, error)
InitChainer application update at chain initialization
func (*WasmApp) InterfaceRegistry ¶ added in v0.40.0
func (app *WasmApp) InterfaceRegistry() types.InterfaceRegistry
InterfaceRegistry returns WasmApp's InterfaceRegistry
func (*WasmApp) LegacyAmino ¶ added in v0.12.0
func (app *WasmApp) 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 (*WasmApp) LoadHeight ¶
LoadHeight loads a particular height
func (*WasmApp) PreBlocker ¶ added in v0.50.0
func (app *WasmApp) PreBlocker(ctx sdk.Context, _ *abci.RequestFinalizeBlock) (*sdk.ResponsePreBlock, error)
PreBlocker application updates every pre block
func (*WasmApp) RegisterAPIRoutes ¶ added in v0.12.0
RegisterAPIRoutes registers all application module routes with the provided API server.
func (*WasmApp) RegisterNodeService ¶ added in v0.40.0
func (*WasmApp) RegisterTendermintService ¶ added in v0.14.0
RegisterTendermintService implements the Application.RegisterTendermintService method.
func (*WasmApp) RegisterTxService ¶ added in v0.12.0
RegisterTxService implements the Application.RegisterTxService method.
func (WasmApp) RegisterUpgradeHandlers ¶ added in v0.40.0
func (app WasmApp) RegisterUpgradeHandlers()
RegisterUpgradeHandlers registers the chain upgrade handlers
func (*WasmApp) SimulationManager ¶
func (app *WasmApp) SimulationManager() *module.SimulationManager
SimulationManager implements the SimulationApp interface