Documentation ¶
Index ¶
- Constants
- Variables
- func CheckBalance(t *testing.T, app *TgradeApp, addr sdk.AccAddress, balances sdk.Coins)
- func ConvertAddrsToValAddrs(addrs []sdk.AccAddress) []sdk.ValAddress
- func CreateTestPubKeys(numPubKeys int) []cryptotypes.PubKey
- func GenSequenceOfTxs(txGen client.TxConfig, msgs []sdk.Msg, accNums []uint64, initSeqNums []uint64, ...) ([]sdk.Tx, error)
- func GetMaccPerms() map[string][]string
- func NewAnteHandler(ak ante.AccountKeeper, bankKeeper bankkeeper.SendKeeper, ...) sdk.AnteHandler
- func NewPubKeyFromHex(pk string) (res cryptotypes.PubKey)
- func RegisterSwaggerAPI(_ client.Context, rtr *mux.Router)
- func SetupWasmHandlers(cdc codec.Marshaler, bankKeeper twasmtypes.BankKeeper, ...) []wasmkeeper.Option
- func SignCheckDeliver(t *testing.T, txCfg client.TxConfig, app *bam.BaseApp, header tmproto.Header, ...) (sdk.GasInfo, *sdk.Result, error)
- func TestAddr(addr string, bech string) (sdk.AccAddress, error)
- type EmptyBaseAppOptions
- type EncodingConfig
- type GenerateAccountStrategy
- type GenesisState
- type TestSupport
- func (s TestSupport) AppCodec() codec.Marshaler
- func (s TestSupport) BankKeeper() bankkeeper.Keeper
- func (s TestSupport) IBCKeeper() ibckeeper.Keeper
- func (s TestSupport) ScopeIBCKeeper() capabilitykeeper.ScopedKeeper
- func (s TestSupport) ScopedTransferKeeper() capabilitykeeper.ScopedKeeper
- func (s TestSupport) ScopedWasmIBCKeeper() capabilitykeeper.ScopedKeeper
- func (s TestSupport) TransferKeeper() ibctransferkeeper.Keeper
- func (s TestSupport) WasmKeeper() wasm.Keeper
- type TgradeApp
- func NewTgradeApp(logger log.Logger, db dbm.DB, traceStore io.Writer, loadLatest bool, ...) *TgradeApp
- func Setup(isCheckTx bool) *TgradeApp
- func SetupWithGenesisAccounts(genAccs []authtypes.GenesisAccount, balances ...banktypes.Balance) *TgradeApp
- func SetupWithGenesisValSet(t *testing.T, valSet *tmtypes.ValidatorSet, genAccs []authtypes.GenesisAccount, ...) *TgradeApp
- func (app *TgradeApp) AppCodec() codec.JSONMarshaler
- func (app *TgradeApp) BeginBlocker(ctx sdk.Context, req abci.RequestBeginBlock) abci.ResponseBeginBlock
- func (app *TgradeApp) EndBlocker(ctx sdk.Context, req abci.RequestEndBlock) abci.ResponseEndBlock
- func (app *TgradeApp) ExportAppStateAndValidators(forZeroHeight bool, jailAllowedAddrs []string) (servertypes.ExportedApp, error)
- func (app *TgradeApp) InitChainer(ctx sdk.Context, req abci.RequestInitChain) abci.ResponseInitChain
- func (app *TgradeApp) LegacyAmino() *codec.LegacyAmino
- func (app *TgradeApp) LoadHeight(height int64) error
- func (app *TgradeApp) ModuleAccountAddrs() map[string]bool
- func (app *TgradeApp) Name() string
- func (app *TgradeApp) RegisterAPIRoutes(apiSvr *api.Server, apiConfig config.APIConfig)
- func (app *TgradeApp) RegisterTendermintService(clientCtx client.Context)
- func (app *TgradeApp) RegisterTxService(clientCtx client.Context)
- func (app *TgradeApp) SimulationManager() *module.SimulationManager
Constants ¶
const ( NodeDir = ".tgrade" Bech32Prefix = "tgrade" )
const DefaultGas = 1200000
Variables ¶
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 // Bech32PrefixValPub defines the Bech32 prefix of a validator's operator public key Bech32PrefixValPub = Bech32Prefix + sdk.PrefixPublic // Bech32PrefixConsAddr defines the Bech32 prefix of a consensus node address Bech32PrefixConsAddr = Bech32Prefix // Bech32PrefixConsPub defines the Bech32 prefix of a consensus node public key Bech32PrefixConsPub = Bech32Prefix + 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 DefaultConsensusParams = &abci.ConsensusParams{ Block: &abci.BlockParams{ MaxBytes: 200000, MaxGas: 2000000, }, Evidence: &tmproto.EvidenceParams{ MaxAgeNumBlocks: 302400, MaxAgeDuration: 504 * time.Hour, MaxBytes: 10000, }, Validator: &tmproto.ValidatorParams{ PubKeyTypes: []string{ tmtypes.ABCIPubKeyTypeEd25519, }, }, }
DefaultConsensusParams defines the default Tendermint consensus params used in TgradeApp testing.
var ( // 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{}, poe.AppModuleBasic{}, bank.AppModuleBasic{}, capability.AppModuleBasic{}, params.AppModuleBasic{}, twasm.AppModuleBasic{}, crisis.AppModuleBasic{}, ibc.AppModuleBasic{}, upgrade.AppModuleBasic{}, evidence.AppModuleBasic{}, transfer.AppModuleBasic{}, vesting.AppModuleBasic{}, globalfee.AppModuleBasic{}, ) )
Functions ¶
func CheckBalance ¶
CheckBalance checks the balance of an account.
func ConvertAddrsToValAddrs ¶
func ConvertAddrsToValAddrs(addrs []sdk.AccAddress) []sdk.ValAddress
ConvertAddrsToValAddrs converts the provided addresses to ValAddress.
func CreateTestPubKeys ¶
func CreateTestPubKeys(numPubKeys int) []cryptotypes.PubKey
CreateTestPubKeys returns a total of numPubKeys public keys in ascending order.
func GenSequenceOfTxs ¶
func GenSequenceOfTxs(txGen client.TxConfig, msgs []sdk.Msg, accNums []uint64, initSeqNums []uint64, numToGenerate int, priv ...cryptotypes.PrivKey) ([]sdk.Tx, error)
GenSequenceOfTxs generates a set of signed transactions of messages, such that they differ only by having the sequence numbers incremented between every transaction.
func GetMaccPerms ¶
GetMaccPerms returns a copy of the module account permissions
func NewAnteHandler ¶
func NewAnteHandler( ak ante.AccountKeeper, bankKeeper bankkeeper.SendKeeper, sigGasConsumer ante.SignatureVerificationGasConsumer, signModeHandler signing.SignModeHandler, txCounterStoreKey sdk.StoreKey, channelKeeper channelkeeper.Keeper, paramStore paramtypes.Subspace, contractSource poekeeper.ContractSource, wasmConfig wasmtypes.WasmConfig, ) sdk.AnteHandler
NewAnteHandler returns an AnteHandler that checks and increments sequence numbers, checks signatures & account numbers, and deducts fees from the first signer.
func NewPubKeyFromHex ¶
func NewPubKeyFromHex(pk string) (res cryptotypes.PubKey)
NewPubKeyFromHex returns a PubKey from a hex string.
func RegisterSwaggerAPI ¶
RegisterSwaggerAPI registers swagger route with API Server
func SetupWasmHandlers ¶
func SetupWasmHandlers( cdc codec.Marshaler, bankKeeper twasmtypes.BankKeeper, govRouter govtypes.Router, twasmKeeper twasmkeeper.TgradeWasmHandlerKeeper, poeKeeper poewasm.ViewKeeper, consensusParamsUpdater twasmkeeper.ConsensusParamsUpdater, ) []wasmkeeper.Option
func SignCheckDeliver ¶
func SignCheckDeliver( t *testing.T, txCfg client.TxConfig, app *bam.BaseApp, header tmproto.Header, msgs []sdk.Msg, chainID string, accNums, accSeqs []uint64, expSimPass, expPass bool, priv ...cryptotypes.PrivKey, ) (sdk.GasInfo, *sdk.Result, error)
SignCheckDeliver checks a generated signed transaction and simulates a block commitment with the given transaction. A test assertion is made using the parameter 'expPass' against the result. A corresponding result is returned.
Types ¶
type EmptyBaseAppOptions ¶
type EmptyBaseAppOptions struct{}
EmptyBaseAppOptions is a stub implementing AppOptions
func (EmptyBaseAppOptions) Get ¶
func (ao EmptyBaseAppOptions) Get(o string) interface{}
Get implements AppOptions
type EncodingConfig ¶
type EncodingConfig struct { InterfaceRegistry types.InterfaceRegistry Marshaler codec.Marshaler TxConfig client.TxConfig Amino *codec.LegacyAmino }
EncodingConfig specifies the concrete encoding types to use for a given app. This is provided for compatibility between protobuf and amino implementations.
func MakeEncodingConfig ¶
func MakeEncodingConfig() EncodingConfig
type GenerateAccountStrategy ¶
type GenerateAccountStrategy func(int) []sdk.AccAddress
type GenesisState ¶
type GenesisState map[string]json.RawMessage
GenesisState 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 NewDefaultGenesisState ¶
func NewDefaultGenesisState() GenesisState
NewDefaultGenesisState generates the default state for the application.
type TestSupport ¶
type TestSupport struct {
// contains filtered or unexported fields
}
func NewTestSupport ¶
func NewTestSupport(t *testing.T, app *TgradeApp) *TestSupport
func (TestSupport) AppCodec ¶
func (s TestSupport) AppCodec() codec.Marshaler
func (TestSupport) BankKeeper ¶
func (s TestSupport) BankKeeper() bankkeeper.Keeper
func (TestSupport) IBCKeeper ¶
func (s TestSupport) IBCKeeper() ibckeeper.Keeper
func (TestSupport) ScopeIBCKeeper ¶
func (s TestSupport) ScopeIBCKeeper() capabilitykeeper.ScopedKeeper
func (TestSupport) ScopedTransferKeeper ¶
func (s TestSupport) ScopedTransferKeeper() capabilitykeeper.ScopedKeeper
func (TestSupport) ScopedWasmIBCKeeper ¶
func (s TestSupport) ScopedWasmIBCKeeper() capabilitykeeper.ScopedKeeper
func (TestSupport) TransferKeeper ¶
func (s TestSupport) TransferKeeper() ibctransferkeeper.Keeper
func (TestSupport) WasmKeeper ¶
func (s TestSupport) WasmKeeper() wasm.Keeper
type TgradeApp ¶
TgradeApp extended ABCI application
func NewTgradeApp ¶
func NewTgradeApp(logger log.Logger, db dbm.DB, traceStore io.Writer, loadLatest bool, skipUpgradeHeights map[int64]bool, homePath string, invCheckPeriod uint, appOpts servertypes.AppOptions, wasmOpts []wasm.Option, baseAppOptions ...func(*baseapp.BaseApp)) *TgradeApp
NewTgradeApp returns a reference to an initialized TgradeApp.
func SetupWithGenesisAccounts ¶
func SetupWithGenesisAccounts(genAccs []authtypes.GenesisAccount, balances ...banktypes.Balance) *TgradeApp
SetupWithGenesisAccounts initializes a new TgradeApp with the provided genesis accounts and possible balances.
func SetupWithGenesisValSet ¶
func SetupWithGenesisValSet(t *testing.T, valSet *tmtypes.ValidatorSet, genAccs []authtypes.GenesisAccount, opts []wasm.Option, balances ...banktypes.Balance) *TgradeApp
SetupWithGenesisValSet initializes a new TgradeApp 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 (10^6) in the default token of the TgradeApp from first genesis account. A Nop logger is set in TgradeApp.
func (*TgradeApp) AppCodec ¶
func (app *TgradeApp) AppCodec() codec.JSONMarshaler
func (*TgradeApp) BeginBlocker ¶
func (app *TgradeApp) BeginBlocker(ctx sdk.Context, req abci.RequestBeginBlock) abci.ResponseBeginBlock
BeginBlocker application updates every begin block
func (*TgradeApp) EndBlocker ¶
func (app *TgradeApp) EndBlocker(ctx sdk.Context, req abci.RequestEndBlock) abci.ResponseEndBlock
EndBlocker application updates every end block
func (*TgradeApp) ExportAppStateAndValidators ¶
func (app *TgradeApp) ExportAppStateAndValidators( forZeroHeight bool, jailAllowedAddrs []string, ) (servertypes.ExportedApp, error)
ExportAppStateAndValidators exports the state of the application for a genesis file.
func (*TgradeApp) InitChainer ¶
func (app *TgradeApp) InitChainer(ctx sdk.Context, req abci.RequestInitChain) abci.ResponseInitChain
InitChainer application update at chain initialization
func (*TgradeApp) LegacyAmino ¶
func (app *TgradeApp) 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 (*TgradeApp) LoadHeight ¶
LoadHeight loads a particular height
func (*TgradeApp) ModuleAccountAddrs ¶
ModuleAccountAddrs returns all the app's module account addresses.
func (*TgradeApp) RegisterAPIRoutes ¶
RegisterAPIRoutes registers all application module routes with the provided API server.
func (*TgradeApp) RegisterTendermintService ¶
RegisterTendermintService implements the Application.RegisterTendermintService method.
func (*TgradeApp) RegisterTxService ¶
RegisterTxService implements the Application.RegisterTxService method.
func (*TgradeApp) SimulationManager ¶
func (app *TgradeApp) SimulationManager() *module.SimulationManager
SimulationManager implements the SimulationApp interface