Documentation ¶
Index ¶
- Constants
- Variables
- func BeginBlockForks(ctx sdk.Context, app *OmniFlixApp)
- func GetDefaultBypassFeeMessages() []string
- func GetEncodingConfig() params.EncodingConfig
- func GetMaccPerms() map[string][]string
- func MakeEncodingConfig() params.EncodingConfig
- func NewAnteHandler(options HandlerOptions) (sdk.AnteHandler, error)
- func RandomAccountAddress() sdk.AccAddress
- func SetAddressPrefixes()
- func SetConfig()
- type EmptyAppOptions
- type EmptyBaseAppOptions
- type GenesisState
- type HandlerOptions
- type OmniFlixApp
- func NewOmniFlixApp(logger log.Logger, db dbm.DB, traceStore io.Writer, loadLatest bool, ...) *OmniFlixApp
- func Setup(isCheckTx bool) *OmniFlixApp
- func SetupTestingAppWithLevelDb(isCheckTx bool) (app *OmniFlixApp, cleanupFn func())
- func SetupWithCustomHome(isCheckTx bool, dir string) *OmniFlixApp
- func SetupWithCustomHomeAndChainId(isCheckTx bool, dir, chainId string) *OmniFlixApp
- func (app *OmniFlixApp) AppCodec() codec.Codec
- func (app *OmniFlixApp) BeginBlocker(ctx sdk.Context) (sdk.BeginBlock, error)
- func (app *OmniFlixApp) BlockedAccountAddrs() map[string]bool
- func (app *OmniFlixApp) EndBlocker(ctx sdk.Context) (sdk.EndBlock, error)
- func (app *OmniFlixApp) ExportAppStateAndValidators(forZeroHeight bool, jailAllowedAddrs []string, modulesToExport []string) (servertypes.ExportedApp, error)
- func (app *OmniFlixApp) ExportState(ctx sdk.Context) map[string]json.RawMessage
- func (app *OmniFlixApp) GetChainBondDenom() string
- func (app *OmniFlixApp) GetSubspace(moduleName string) paramstypes.Subspace
- func (app *OmniFlixApp) InitChainer(ctx sdk.Context, req *abci.RequestInitChain) (*abci.ResponseInitChain, error)
- func (app *OmniFlixApp) InterfaceRegistry() types.InterfaceRegistry
- func (app *OmniFlixApp) LegacyAmino() *codec.LegacyAmino
- func (app *OmniFlixApp) LoadHeight(height int64) error
- func (app *OmniFlixApp) ModuleAccountAddrs() map[string]bool
- func (app *OmniFlixApp) ModuleManager() module.Manager
- func (app *OmniFlixApp) Name() string
- func (app *OmniFlixApp) PreBlocker(ctx sdk.Context, _ *abci.RequestFinalizeBlock) (*sdk.ResponsePreBlock, error)
- func (app *OmniFlixApp) PreCommitter(ctx sdk.Context)
- func (app *OmniFlixApp) PrepareCheckStater(ctx sdk.Context)
- func (app *OmniFlixApp) RegisterAPIRoutes(apiSvr *api.Server, _ config.APIConfig)
- func (app *OmniFlixApp) RegisterNodeService(clientCtx client.Context, cfg config.Config)
- func (app *OmniFlixApp) RegisterTendermintService(clientCtx client.Context)
- func (app *OmniFlixApp) RegisterTxService(clientCtx client.Context)
- func (app *OmniFlixApp) SimulationManager() *module.SimulationManager
Constants ¶
const (
AccountAddressPrefix = "omniflix"
)
const Name = "omniflixhub"
const (
SimAppChainID = "omniflixhub-test"
)
SimAppChainID hardcoded chainID for simulation
Variables ¶
var ( // ProposalsEnabled If EnabledSpecificProposals is "", and this is "true", then enable all x/wasm proposals. // If EnabledSpecificProposals is "", and this is not "true", then disable all x/wasm proposals. ProposalsEnabled = "true" // EnableSpecificProposals If set to non-empty string it must be comma-separated list of values that are all a subset // of "EnableAllProposals" (takes precedence over ProposalsEnabled) // https://github.com/CosmWasm/wasmd/blob/02a54d33ff2c064f3539ae12d75d027d9c665f05/x/wasm/internal/types/proposal.go#L28-L34 EnableSpecificProposals = "" EmptyWasmOpts [][]wasmkeeper.Option )
var ( // DefaultNodeHome default home directories for the application daemon DefaultNodeHome string Upgrades = []upgrades.Upgrade{v012.Upgrade, v2.Upgrade, v2_1.Upgrade, v3.Upgrade, v4.Upgrade, v5.Upgrade} Forks []upgrades.Fork )
var ( AccountPubKeyPrefix = AccountAddressPrefix + "pub" ValidatorAddressPrefix = AccountAddressPrefix + "valoper" ValidatorPubKeyPrefix = AccountAddressPrefix + "valoperpub" ConsNodeAddressPrefix = AccountAddressPrefix + "valcons" ConsNodePubKeyPrefix = AccountAddressPrefix + "valconspub" )
var DefaultConsensusParams = &tmproto.ConsensusParams{ Block: &tmproto.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 OmniFlixApp 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{}, genutil.NewAppModuleBasic(genutiltypes.DefaultMessageValidator), bank.AppModuleBasic{}, capability.AppModuleBasic{}, staking.AppModuleBasic{}, mint.AppModuleBasic{}, distr.AppModuleBasic{}, gov.NewAppModuleBasic(getGovProposalHandlers()), wasm.AppModuleBasic{}, groupmodule.AppModuleBasic{}, params.AppModuleBasic{}, consensus.AppModuleBasic{}, crisis.AppModuleBasic{}, slashing.AppModuleBasic{}, ibc.AppModuleBasic{}, ibctm.AppModuleBasic{}, ica.AppModuleBasic{}, icq.AppModuleBasic{}, packetforward.AppModuleBasic{}, ibchooks.AppModuleBasic{}, feegrantmodule.AppModuleBasic{}, authzmodule.AppModuleBasic{}, circuit.AppModuleBasic{}, upgrade.AppModuleBasic{}, evidence.AppModuleBasic{}, transfer.AppModuleBasic{}, vesting.AppModuleBasic{}, globalfee.AppModuleBasic{}, tokenfactory.AppModuleBasic{}, nfttransfer.AppModuleBasic{}, alloc.AppModuleBasic{}, onft.AppModuleBasic{}, marketplace.AppModuleBasic{}, streampay.AppModuleBasic{}, itc.AppModuleBasic{}, ) )
Functions ¶
func BeginBlockForks ¶
func BeginBlockForks(ctx sdk.Context, app *OmniFlixApp)
BeginBlockForks is intended to be run in a chain upgrade.
func GetDefaultBypassFeeMessages ¶
func GetDefaultBypassFeeMessages() []string
func GetEncodingConfig ¶
func GetEncodingConfig() params.EncodingConfig
func GetMaccPerms ¶
GetMaccPerms returns a copy of the module account permissions
func MakeEncodingConfig ¶
func MakeEncodingConfig() params.EncodingConfig
MakeEncodingConfig creates an EncodingConfig for testing
func NewAnteHandler ¶
func NewAnteHandler(options HandlerOptions) (sdk.AnteHandler, error)
func RandomAccountAddress ¶
func RandomAccountAddress() sdk.AccAddress
func SetAddressPrefixes ¶
func SetAddressPrefixes()
SetAddressPrefixes sets the global prefixes to be used when serializing addresses and public keys to Bech32 strings.
Types ¶
type EmptyAppOptions ¶
type EmptyAppOptions struct{}
func (EmptyAppOptions) Get ¶
func (EmptyAppOptions) Get(_ string) interface{}
type EmptyBaseAppOptions ¶
type EmptyBaseAppOptions struct{}
EmptyBaseAppOptions is a stub implementing AppOptions
func (EmptyBaseAppOptions) Get ¶
func (ao EmptyBaseAppOptions) Get(_ string) interface{}
Get implements AppOptions
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(omniflixapp *OmniFlixApp) GenesisState
SetupWithGenesisValSet initializes a new omniFlixApp 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 omniFlixApp from first genesis account. A Nop logger is set in omniFlixApp.
func NewDefaultGenesisState ¶
func NewDefaultGenesisState() GenesisState
NewDefaultGenesisState generates the default state for the application.
type HandlerOptions ¶
type HandlerOptions struct { ante.HandlerOptions GovKeeper govkeeper.Keeper IBCKeeper *ibckeeper.Keeper TxCounterStoreKey *storetypes.KVStoreKey WasmConfig wasmtypes.WasmConfig Codec codec.BinaryCodec BypassMinFeeMsgTypes []string GlobalFeeKeeper globalfeekeeper.Keeper StakingKeeper stakingkeeper.Keeper CircuitKeeper circuitante.CircuitBreaker }
HandlerOptions extend the SDK's AnteHandler options by requiring the IBC channel keeper.
type OmniFlixApp ¶
type OmniFlixApp struct { *baseapp.BaseApp keepers.AppKeepers ModuleBasics module.BasicManager // contains filtered or unexported fields }
OmniFlixApp 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 NewOmniFlixApp ¶
func NewOmniFlixApp( logger log.Logger, db dbm.DB, traceStore io.Writer, loadLatest bool, skipUpgradeHeights map[int64]bool, homePath string, invCheckPeriod uint, encodingConfig appparams.EncodingConfig, appOpts servertypes.AppOptions, wasmOpts []wasmkeeper.Option, baseAppOptions ...func(*baseapp.BaseApp), ) *OmniFlixApp
func Setup ¶
func Setup(isCheckTx bool) *OmniFlixApp
func SetupTestingAppWithLevelDb ¶
func SetupTestingAppWithLevelDb(isCheckTx bool) (app *OmniFlixApp, cleanupFn func())
SetupTestingAppWithLevelDb initializes a new OmniFlixApp intended for testing, with LevelDB as a db.
func SetupWithCustomHome ¶
func SetupWithCustomHome(isCheckTx bool, dir string) *OmniFlixApp
SetupWithCustomHome initializes a new OmniFlixApp with a custom home directory
func SetupWithCustomHomeAndChainId ¶
func SetupWithCustomHomeAndChainId(isCheckTx bool, dir, chainId string) *OmniFlixApp
func (*OmniFlixApp) AppCodec ¶
func (app *OmniFlixApp) AppCodec() codec.Codec
AppCodec returns omniflixhub's 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 (*OmniFlixApp) BeginBlocker ¶
func (app *OmniFlixApp) BeginBlocker(ctx sdk.Context) (sdk.BeginBlock, error)
BeginBlocker application updates every begin block
func (*OmniFlixApp) BlockedAccountAddrs ¶
func (app *OmniFlixApp) BlockedAccountAddrs() map[string]bool
BlockedAccountAddrs returns all the app's blocked account addresses.
func (*OmniFlixApp) EndBlocker ¶
EndBlocker application updates every end block
func (*OmniFlixApp) ExportAppStateAndValidators ¶
func (app *OmniFlixApp) ExportAppStateAndValidators( forZeroHeight bool, jailAllowedAddrs []string, modulesToExport []string, ) (servertypes.ExportedApp, error)
ExportAppStateAndValidators exports the state of the application for a genesis file.
func (*OmniFlixApp) ExportState ¶
func (app *OmniFlixApp) ExportState(ctx sdk.Context) map[string]json.RawMessage
func (*OmniFlixApp) GetChainBondDenom ¶
func (app *OmniFlixApp) GetChainBondDenom() string
func (*OmniFlixApp) GetSubspace ¶
func (app *OmniFlixApp) 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 (*OmniFlixApp) InitChainer ¶
func (app *OmniFlixApp) InitChainer(ctx sdk.Context, req *abci.RequestInitChain) (*abci.ResponseInitChain, error)
InitChainer application update at chain initialization
func (*OmniFlixApp) InterfaceRegistry ¶
func (app *OmniFlixApp) InterfaceRegistry() types.InterfaceRegistry
InterfaceRegistry returns omniflixhub's InterfaceRegistry
func (*OmniFlixApp) LegacyAmino ¶
func (app *OmniFlixApp) LegacyAmino() *codec.LegacyAmino
LegacyAmino returns omniflixhub'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 (*OmniFlixApp) LoadHeight ¶
func (app *OmniFlixApp) LoadHeight(height int64) error
LoadHeight loads a particular height
func (*OmniFlixApp) ModuleAccountAddrs ¶
func (app *OmniFlixApp) ModuleAccountAddrs() map[string]bool
ModuleAccountAddrs returns all the app's module account addresses.
func (*OmniFlixApp) ModuleManager ¶
func (app *OmniFlixApp) ModuleManager() module.Manager
func (*OmniFlixApp) PreBlocker ¶
func (app *OmniFlixApp) PreBlocker(ctx sdk.Context, _ *abci.RequestFinalizeBlock) (*sdk.ResponsePreBlock, error)
PreBlocker application updates before begin of the block
func (*OmniFlixApp) PreCommitter ¶
func (app *OmniFlixApp) PreCommitter(ctx sdk.Context)
PreCommitter application updates before the commit of a block after all transactions have been delivered.
func (*OmniFlixApp) PrepareCheckStater ¶
func (app *OmniFlixApp) PrepareCheckStater(ctx sdk.Context)
func (*OmniFlixApp) RegisterAPIRoutes ¶
func (app *OmniFlixApp) RegisterAPIRoutes(apiSvr *api.Server, _ config.APIConfig)
RegisterAPIRoutes registers all application module routes with the provided API server.
func (*OmniFlixApp) RegisterNodeService ¶
func (app *OmniFlixApp) RegisterNodeService(clientCtx client.Context, cfg config.Config)
func (*OmniFlixApp) RegisterTendermintService ¶
func (app *OmniFlixApp) RegisterTendermintService(clientCtx client.Context)
RegisterTendermintService implements the Application.RegisterTendermintService method.
func (*OmniFlixApp) RegisterTxService ¶
func (app *OmniFlixApp) RegisterTxService(clientCtx client.Context)
RegisterTxService implements the Application.RegisterTxService method.
func (*OmniFlixApp) SimulationManager ¶
func (app *OmniFlixApp) SimulationManager() *module.SimulationManager