app

package
v0.12.1 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Nov 10, 2023 License: MIT Imports: 108 Imported by: 0

Documentation

Index

Constants

View Source
const (
	AccountAddressPrefix = "omniflix"
)
View Source
const Name = "omniflixhub"
View Source
const (
	SimAppChainID = "omniflixhub-test"
)

SimAppChainID hardcoded chainID for simulation

Variables

View Source
var (
	// DefaultNodeHome default home directories for the application daemon
	DefaultNodeHome string
	Upgrades        = []upgrades.Upgrade{v012.Upgrade}
	Forks           []upgrades.Fork
)
View Source
var (
	AccountPubKeyPrefix    = AccountAddressPrefix + "pub"
	ValidatorAddressPrefix = AccountAddressPrefix + "valoper"
	ValidatorPubKeyPrefix  = AccountAddressPrefix + "valoperpub"
	ConsNodeAddressPrefix  = AccountAddressPrefix + "valcons"
	ConsNodePubKeyPrefix   = AccountAddressPrefix + "valconspub"
)
View Source
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 OmniFlixApp testing.

Functions

func BeginBlockForks added in v0.12.0

func BeginBlockForks(ctx sdk.Context, app *OmniFlixApp)

BeginBlockForks is intended to be run in a chain upgrade.

func GetMaccPerms

func GetMaccPerms() map[string][]string

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 added in v0.11.0

func RandomAccountAddress() sdk.AccAddress

func SetConfig

func SetConfig()

Types

type EmptyAppOptions added in v0.11.0

type EmptyAppOptions struct{}

func (EmptyAppOptions) Get added in v0.11.0

func (EmptyAppOptions) Get(_ string) interface{}

type EmptyBaseAppOptions added in v0.11.0

type EmptyBaseAppOptions struct{}

EmptyBaseAppOptions is a stub implementing AppOptions

func (EmptyBaseAppOptions) Get added in v0.11.0

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 NewDefaultGenesisState

func NewDefaultGenesisState(cdc codec.JSONCodec) GenesisState

NewDefaultGenesisState generates the default state for the application.

type HandlerOptions

type HandlerOptions struct {
	ante.HandlerOptions

	GovKeeper         govkeeper.Keeper
	IBCKeeper         *ibckeeper.Keeper
	TxCounterStoreKey sdk.StoreKey
	Codec             codec.BinaryCodec
}

HandlerOptions extend the SDK's AnteHandler options by requiring the IBC channel keeper.

type OmniFlixApp added in v0.12.0

type OmniFlixApp struct {
	*baseapp.BaseApp
	keepers.AppKeepers
	// 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,
	baseAppOptions ...func(*baseapp.BaseApp),
) *OmniFlixApp

func Setup added in v0.11.0

func Setup(t *testing.T, _ bool, _ uint) *OmniFlixApp

func SetupWithGenesisValSet added in v0.11.0

func SetupWithGenesisValSet(
	t *testing.T,
	valSet *tmtypes.ValidatorSet,
	genAccs []authtypes.GenesisAccount,
	balances ...banktypes.Balance,
) *OmniFlixApp

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 (*OmniFlixApp) AppCodec added in v0.12.0

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 added in v0.12.0

func (app *OmniFlixApp) BeginBlocker(ctx sdk.Context, req abci.RequestBeginBlock) abci.ResponseBeginBlock

BeginBlocker application updates every begin block

func (*OmniFlixApp) BlockedAccountAddrs added in v0.12.0

func (app *OmniFlixApp) BlockedAccountAddrs() map[string]bool

BlockedAccountAddrs returns all the app's blocked account addresses.

func (*OmniFlixApp) EndBlocker added in v0.12.0

func (app *OmniFlixApp) EndBlocker(ctx sdk.Context, req abci.RequestEndBlock) abci.ResponseEndBlock

EndBlocker application updates every end block

func (*OmniFlixApp) ExportAppStateAndValidators added in v0.12.0

func (app *OmniFlixApp) ExportAppStateAndValidators(
	forZeroHeight bool, jailAllowedAddrs []string,
) (servertypes.ExportedApp, error)

ExportAppStateAndValidators exports the state of the application for a genesis file.

func (*OmniFlixApp) GetSubspace added in v0.12.0

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 added in v0.12.0

func (app *OmniFlixApp) InitChainer(ctx sdk.Context, req abci.RequestInitChain) abci.ResponseInitChain

InitChainer application update at chain initialization

func (*OmniFlixApp) InterfaceRegistry added in v0.12.0

func (app *OmniFlixApp) InterfaceRegistry() types.InterfaceRegistry

InterfaceRegistry returns omniflixhub's InterfaceRegistry

func (*OmniFlixApp) LegacyAmino added in v0.12.0

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 added in v0.12.0

func (app *OmniFlixApp) LoadHeight(height int64) error

LoadHeight loads a particular height

func (*OmniFlixApp) ModuleAccountAddrs added in v0.12.0

func (app *OmniFlixApp) ModuleAccountAddrs() map[string]bool

ModuleAccountAddrs returns all the app's module account addresses.

func (*OmniFlixApp) Name added in v0.12.0

func (app *OmniFlixApp) Name() string

Name returns the name of the App

func (*OmniFlixApp) RegisterAPIRoutes added in v0.12.0

func (app *OmniFlixApp) RegisterAPIRoutes(apiSvr *api.Server, apiConfig config.APIConfig)

RegisterAPIRoutes registers all application module routes with the provided API server.

func (*OmniFlixApp) RegisterTendermintService added in v0.12.0

func (app *OmniFlixApp) RegisterTendermintService(clientCtx client.Context)

RegisterTendermintService implements the Application.RegisterTendermintService method.

func (*OmniFlixApp) RegisterTxService added in v0.12.0

func (app *OmniFlixApp) RegisterTxService(clientCtx client.Context)

RegisterTxService implements the Application.RegisterTxService method.

func (*OmniFlixApp) SimulationManager added in v0.12.0

func (app *OmniFlixApp) SimulationManager() *module.SimulationManager

Directories

Path Synopsis

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL