app

package
v0.0.0-...-3aeaace Latest Latest
Warning

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

Go to latest
Published: Oct 12, 2023 License: Apache-2.0 Imports: 111 Imported by: 0

Documentation

Index

Constants

View Source
const (
	// Bech32MainPrefix defines the main SDK Bech32 prefix of an account's address
	Bech32MainPrefix = "re"
	// PrefixValidator is the prefix for validator keys
	PrefixValidator = "val"
	// PrefixConsensus is the prefix for consensus keys
	PrefixConsensus = "cons"
	// PrefixPublic is the prefix for public keys
	PrefixPublic = "pub"
	// PrefixOperator is the prefix for operator keys
	PrefixOperator = "oper"

	// Bech32PrefixAccAddr defines the Bech32 prefix of an account's address
	Bech32PrefixAccAddr = Bech32MainPrefix
	// Bech32PrefixAccPub defines the Bech32 prefix of an account's public key
	Bech32PrefixAccPub = Bech32MainPrefix + PrefixPublic
	// Bech32PrefixValAddr defines the Bech32 prefix of a validator's operator address
	Bech32PrefixValAddr = Bech32MainPrefix + PrefixValidator + PrefixOperator
	// Bech32PrefixValPub defines the Bech32 prefix of a validator's operator public key
	Bech32PrefixValPub = Bech32MainPrefix + PrefixValidator + PrefixOperator + PrefixPublic
	// Bech32PrefixConsAddr defines the Bech32 prefix of a consensus node address
	Bech32PrefixConsAddr = Bech32MainPrefix + PrefixValidator + PrefixConsensus
	// Bech32PrefixConsPub defines the Bech32 prefix of a consensus node public key
	Bech32PrefixConsPub = Bech32MainPrefix + PrefixValidator + PrefixConsensus + PrefixPublic
)
View Source
const (
	Name = "Re"
)

Variables

View Source
var (
	// ProposalsEnabled If EnabledSpecificProposals is "", and this is "true", then enable all x/wasm proposals.
	// ProposalsEnabled If EnabledSpecificProposals is "", and this is not "true", then disable all x/wasm proposals.
	ProposalsEnabled = "false"
	// 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 = ""
)
View Source
var WhitelistedParams = map[paramChangeKey]struct{}{

	{Subspace: banktypes.ModuleName, Key: "SendEnabled"}: {},

	{Subspace: ibctransfertypes.ModuleName, Key: "SendEnabled"}:    {},
	{Subspace: ibctransfertypes.ModuleName, Key: "ReceiveEnabled"}: {},

	{Subspace: icahosttypes.SubModuleName, Key: "HostEnabled"}:   {},
	{Subspace: icahosttypes.SubModuleName, Key: "AllowMessages"}: {},
}

Functions

func GetDefaultConfig

func GetDefaultConfig() *sdk.Config

func GetEnabledProposals

func GetEnabledProposals() []wasm.ProposalType

GetEnabledProposals parses the ProposalsEnabled / EnableSpecificProposals values to produce a list of enabled proposals to pass into wasmd app.

func GetMaccPerms

func GetMaccPerms() map[string][]string

GetMaccPerms returns a copy of the module account permissions

func IsProposalWhitelisted

func IsProposalWhitelisted(content govtypes.Content) bool

func MakeEncodingConfig

func MakeEncodingConfig() params.EncodingConfig

MakeEncodingConfig creates an EncodingConfig for testing

func NewAnteHandler

func NewAnteHandler(options HandlerOptions) (sdk.AnteHandler, error)

NewAnteHandler returns an AnteHandler that checks and increments sequence numbers, checks signatures & account numbers, and deducts fees from the first signer

Types

type EmptyAppOptions

type EmptyAppOptions struct{}

EmptyAppOptions is a stub implementing AppOptions

func (EmptyAppOptions) Get

func (ao EmptyAppOptions) Get(o 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
	IBCKeeper         *ibckeeper.Keeper
	ConsumerKeeper    ibcconsumerkeeper.Keeper
	WasmConfig        *wasmTypes.WasmConfig
	TXCounterStoreKey sdk.StoreKey
}

type ReApp

type ReApp struct {
	*baseapp.BaseApp

	// keepers
	AccountKeeper     authkeeper.AccountKeeper
	AuthzKeeper       authzkeeper.Keeper
	BankKeeper        bankkeeper.Keeper
	CapabilityKeeper  *capabilitykeeper.Keeper
	SlashingKeeper    slashingkeeper.Keeper
	CrisisKeeper      crisiskeeper.Keeper
	UpgradeKeeper     upgradekeeper.Keeper
	ParamsKeeper      paramskeeper.Keeper
	IBCKeeper         *ibckeeper.Keeper // IBC Keeper must be a pointer in the app, so we can SetRouter on it correctly
	EvidenceKeeper    evidencekeeper.Keeper
	TransferKeeper    ibctransferkeeper.Keeper
	ICAHostKeeper     icahostkeeper.Keeper
	FeeGrantKeeper    feegrantkeeper.Keeper
	ConsumerKeeper    ccvconsumerkeeper.Keeper
	AdminmoduleKeeper adminmodulemodulekeeper.Keeper

	// make scoped keepers public for test purposes
	ScopedIBCKeeper         capabilitykeeper.ScopedKeeper
	ScopedTransferKeeper    capabilitykeeper.ScopedKeeper
	ScopedICAHostKeeper     capabilitykeeper.ScopedKeeper
	ScopedCCVConsumerKeeper capabilitykeeper.ScopedKeeper
	ScopedWasmKeeper        capabilitykeeper.ScopedKeeper

	WasmKeeper wasm.Keeper

	DidKeeper didkeeper.Keeper

	MicKeeper micmodulekeeper.Keeper

	FixKeeper fixmodulekeeper.Keeper

	OracleKeeper oraclemodulekeeper.Keeper
	// contains filtered or unexported fields
}

App 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 NewReApp

func NewReApp(
	logger log.Logger,
	db dbm.DB,
	traceStore io.Writer,
	loadLatest bool,
	skipUpgradeHeights map[int64]bool,
	homePath string,
	invCheckPeriod uint,
	encodingConfig appparams.EncodingConfig,
	enabledProposals []wasm.ProposalType,
	appOpts servertypes.AppOptions,
	wasmOpts []wasm.Option,
	baseAppOptions ...func(*baseapp.BaseApp),
) *ReApp

New returns a reference to an initialized blockchain app

func Setup

func Setup(isCheckTx bool) *ReApp

func (*ReApp) AppCodec

func (app *ReApp) AppCodec() codec.Codec

AppCodec returns an 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 (*ReApp) BeginBlocker

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

BeginBlocker application updates every begin block

func (*ReApp) BlockedModuleAccountAddrs

func (app *ReApp) BlockedModuleAccountAddrs() map[string]bool

BlockedModuleAccountAddrs returns all the app's blocked module account addresses.

func (*ReApp) EndBlocker

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

EndBlocker application updates every end block

func (*ReApp) ExportAppStateAndValidators

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

ExportAppStateAndValidators implements the simapp app interface by exporting the state of the application

func (ReApp) GetBaseApp

func (app ReApp) GetBaseApp() *baseapp.BaseApp

GetBaseApp returns the base app of the application

func (*ReApp) GetConsumerKeeper

func (app *ReApp) GetConsumerKeeper() ccvconsumerkeeper.Keeper

GetConsumerKeeper implements the ConsumerApp interface.

func (*ReApp) GetIBCKeeper

func (app *ReApp) GetIBCKeeper() *ibckeeper.Keeper

GetIBCKeeper implements the TestingApp interface.

func (*ReApp) GetKey

func (app *ReApp) 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 (*ReApp) GetMemKey

func (app *ReApp) GetMemKey(storeKey string) *storetypes.MemoryStoreKey

GetMemKey returns the MemStoreKey for the provided mem key.

NOTE: This is solely used for testing purposes.

func (*ReApp) GetScopedIBCKeeper

func (app *ReApp) GetScopedIBCKeeper() capabilitykeeper.ScopedKeeper

GetScopedIBCKeeper implements the TestingApp interface.

func (*ReApp) GetStakingKeeper

func (app *ReApp) GetStakingKeeper() core.StakingKeeper

GetStakingKeeper implements the TestingApp interface.

func (*ReApp) GetSubspace

func (app *ReApp) 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 (*ReApp) GetTKey

func (app *ReApp) 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 (*ReApp) GetTestAccountKeeper

func (app *ReApp) GetTestAccountKeeper() e2e.TestAccountKeeper

GetE2eAccountKeeper implements the ConsumerApp interface.

func (*ReApp) GetTestBankKeeper

func (app *ReApp) GetTestBankKeeper() e2e.TestBankKeeper

GetE2eBankKeeper implements the ConsumerApp interface.

func (*ReApp) GetTestEvidenceKeeper

func (app *ReApp) GetTestEvidenceKeeper() e2e.TestEvidenceKeeper

GetE2eEvidenceKeeper implements the ConsumerApp interface.

func (*ReApp) GetTestSlashingKeeper

func (app *ReApp) GetTestSlashingKeeper() e2e.TestSlashingKeeper

GetE2eSlashingKeeper implements the ConsumerApp interface.

func (*ReApp) GetTxConfig

func (app *ReApp) GetTxConfig() client.TxConfig

GetTxConfig implements the TestingApp interface.

func (*ReApp) GetValidatorSet

func (app *ReApp) GetValidatorSet(ctx sdk.Context) ([]tmtypes.GenesisValidator, error)

GetValidatorSet returns a slice of bonded validators.

func (*ReApp) InitChainer

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

InitChainer application update at chain initialization

func (*ReApp) InterfaceRegistry

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

InterfaceRegistry returns an InterfaceRegistry

func (*ReApp) LegacyAmino

func (app *ReApp) 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 (*ReApp) LoadHeight

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

LoadHeight loads a particular height

func (*ReApp) ModuleAccountAddrs

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

ModuleAccountAddrs returns all the app's module account addresses.

func (*ReApp) Name

func (app *ReApp) Name() string

Name returns the name of the App

func (*ReApp) RegisterAPIRoutes

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

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

func (*ReApp) RegisterTendermintService

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

RegisterTendermintService implements the Application.RegisterTendermintService method.

func (*ReApp) RegisterTxService

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

RegisterTxService implements the Application.RegisterTxService method.

func (*ReApp) SimulationManager

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

SimulationManager implements the SimulationApp interface

Directories

Path Synopsis

Jump to

Keyboard shortcuts

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