app

package
v1.0.0-alpha Latest Latest
Warning

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

Go to latest
Published: Sep 1, 2020 License: Apache-2.0 Imports: 106 Imported by: 4

Documentation

Index

Constants

View Source
const (
	DefaultWeightMsgSend                        int = 100
	DefaultWeightMsgMultiSend                   int = 10
	DefaultWeightMsgSetWithdrawAddress          int = 50
	DefaultWeightMsgWithdrawDelegationReward    int = 50
	DefaultWeightMsgWithdrawValidatorCommission int = 50
	DefaultWeightMsgFundCommunityPool           int = 50
	DefaultWeightMsgDeposit                     int = 100
	DefaultWeightMsgVote                        int = 67
	DefaultWeightMsgUnjail                      int = 100
	DefaultWeightMsgCreateValidator             int = 100
	DefaultWeightMsgEditValidator               int = 5
	DefaultWeightMsgDelegate                    int = 100
	DefaultWeightMsgUndelegate                  int = 100
	DefaultWeightMsgBeginRedelegate             int = 100

	DefaultWeightCommunitySpendProposal int = 5
	DefaultWeightTextProposal           int = 5
	DefaultWeightParamChangeProposal    int = 5
)

Default simulation operation weights for messages and gov proposals

Variables

View Source
var (
	// DefaultNodeHome default home directories for the application daemon
	DefaultNodeHome = os.ExpandEnv("$HOME/.iris")

	// 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.AppModuleBasic{},
		bank.AppModuleBasic{},
		capability.AppModuleBasic{},
		staking.AppModuleBasic{},
		mint.AppModuleBasic{},
		distr.AppModuleBasic{},
		gov.NewAppModuleBasic(
			paramsclient.ProposalHandler,
			distrclient.ProposalHandler,
			upgradeclient.ProposalHandler,
		),
		params.AppModuleBasic{},
		crisis.AppModuleBasic{},
		slashing.AppModuleBasic{},
		ibc.AppModuleBasic{},
		upgrade.AppModuleBasic{},
		evidence.AppModuleBasic{},
		transfer.AppModuleBasic{},
		guardian.AppModuleBasic{},
		token.AppModuleBasic{},
		record.AppModuleBasic{},
		nft.AppModuleBasic{},
		htlc.AppModuleBasic{},
		coinswap.AppModuleBasic{},
		service.AppModuleBasic{},
		oracle.AppModuleBasic{},
		random.AppModuleBasic{},
	)
)

Functions

func GetMaccPerms added in v1.0.0

func GetMaccPerms() map[string][]string

GetMaccPerms returns a copy of the module account permissions

func MakeCodecs added in v1.0.0

func MakeCodecs() (codec.Marshaler, *codec.LegacyAmino)

MakeCodecs constructs the *std.Codec and *codec.Codec instances used by IrisApp. It is useful for tests and clients who do not want to construct the full irisApp

func MakeEncodingConfig added in v1.0.0

func MakeEncodingConfig() params.EncodingConfig

MakeEncodingConfig creates an EncodingConfig for testing

func NewAnteHandler added in v1.0.0

func NewAnteHandler(
	ak authkeeper.AccountKeeper, bankKeeper bankkeeper.Keeper, tk tokenkeeper.Keeper,
	sigGasConsumer ante.SignatureVerificationGasConsumer,
	signModeHandler signing.SignModeHandler,
) sdk.AnteHandler

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

func WrapToken

func WrapToken(tk tokenkeeper.Keeper) tokenAdapter

Types

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

func NewDefaultGenesisState() GenesisState

NewDefaultGenesisState generates the default state for the application.

type IrisApp

type IrisApp struct {
	*baseapp.BaseApp

	// make scoped keepers public for test purposes
	ScopedIBCKeeper      capabilitykeeper.ScopedKeeper
	ScopedTransferKeeper capabilitykeeper.ScopedKeeper
	// contains filtered or unexported fields
}

IrisApp 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 NewIrisApp

func NewIrisApp(
	logger log.Logger, db dbm.DB, traceStore io.Writer,
	loadLatest bool, skipUpgradeHeights map[int64]bool,
	homePath string, invCheckPeriod uint,
	encodingConfig simappparams.EncodingConfig,
	baseAppOptions ...func(*baseapp.BaseApp),
) *IrisApp

NewIrisApp returns a reference to an initialized IrisApp.

func (*IrisApp) AppCodec added in v1.0.0

func (app *IrisApp) AppCodec() codec.Marshaler

AppCodec returns IrisApp'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 (*IrisApp) BeginBlocker

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

BeginBlocker application updates every begin block

func (*IrisApp) BlockedAddrs added in v1.0.0

func (app *IrisApp) BlockedAddrs() map[string]bool

BlockedAddrs returns all the app's module account addresses that are not allowed to receive external tokens.

func (*IrisApp) EndBlocker

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

EndBlocker application updates every end block

func (*IrisApp) ExportAppStateAndValidators

func (app *IrisApp) ExportAppStateAndValidators(
	forZeroHeight bool,
	jailAllowedAddrs []string,
) (
	appState json.RawMessage,
	validators []tmtypes.GenesisValidator,
	cp *abci.ConsensusParams,
	err error,
)

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

func (*IrisApp) GetKey added in v1.0.0

func (app *IrisApp) GetKey(storeKey string) *sdk.KVStoreKey

GetKey returns the KVStoreKey for the provided store key.

NOTE: This is solely to be used for testing purposes.

func (*IrisApp) GetMemKey added in v1.0.0

func (app *IrisApp) GetMemKey(storeKey string) *sdk.MemoryStoreKey

GetMemKey returns the MemStoreKey for the provided mem key.

NOTE: This is solely used for testing purposes.

func (*IrisApp) GetSubspace added in v1.0.0

func (app *IrisApp) 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 (*IrisApp) GetTKey added in v1.0.0

func (app *IrisApp) GetTKey(storeKey string) *sdk.TransientStoreKey

GetTKey returns the TransientStoreKey for the provided store key.

NOTE: This is solely to be used for testing purposes.

func (*IrisApp) InitChainer added in v1.0.0

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

InitChainer application update at chain initialization

func (*IrisApp) InterfaceRegistry added in v1.0.0

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

InterfaceRegistry returns IrisApp's InterfaceRegistry

func (*IrisApp) LegacyAmino added in v1.0.0

func (app *IrisApp) LegacyAmino() *codec.LegacyAmino

LegacyAmino returns IrisApp's 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 (*IrisApp) LoadHeight added in v0.8.0

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

LoadHeight loads a particular height

func (*IrisApp) ModuleAccountAddrs added in v1.0.0

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

ModuleAccountAddrs returns all the app's module account addresses.

func (*IrisApp) Name added in v1.0.0

func (app *IrisApp) Name() string

Name returns the name of the App

func (*IrisApp) RegisterAPIRoutes added in v1.0.0

func (app *IrisApp) RegisterAPIRoutes(apiSvr *api.Server)

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

func (*IrisApp) SimulationManager added in v1.0.0

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

SimulationManager implements the SimulationApp interface

Jump to

Keyboard shortcuts

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