Documentation ¶
Index ¶
- Variables
- func BeginBlockForks(ctx sdk.Context, app *FuryaApp)
- func DefaultConfig() network.Config
- func GetEncodingConfig() params.EncodingConfig
- func GetMaccPerms() map[string][]string
- func GetWasmEnabledProposals() []wasm.ProposalType
- func MakeCodecs() (codec.Codec, *codec.LegacyAmino)
- func MakeEncodingConfig() params.EncodingConfig
- func ModuleAccountAddrs() map[string]bool
- func NewAnteHandler(appOpts servertypes.AppOptions, wasmConfig wasm.Config, ...) sdk.AnteHandler
- func NewAppConstructor() network.AppConstructor
- func NewPostHandler(protoRevKeeper *protorevkeeper.Keeper) sdk.AnteHandler
- func OrderEndBlockers(allModuleNames []string) []string
- func OrderInitGenesis(allModuleNames []string) []string
- func RegisterSwaggerAPI(ctx client.Context, rtr *mux.Router)
- type FuryaApp
- func (app *FuryaApp) AppCodec() codec.Codec
- func (app *FuryaApp) BeginBlocker(ctx sdk.Context, req abci.RequestBeginBlock) abci.ResponseBeginBlock
- func (app *FuryaApp) BlockedAddrs() map[string]bool
- func (app *FuryaApp) EndBlocker(ctx sdk.Context, req abci.RequestEndBlock) abci.ResponseEndBlock
- func (app *FuryaApp) ExportAppStateAndValidators(forZeroHeight bool, jailAllowedAddrs []string, modulesToExport []string) (servertypes.ExportedApp, error)
- func (app *FuryaApp) ExportState(ctx sdk.Context) map[string]json.RawMessage
- func (app *FuryaApp) GetAccountKeeper() simtypes.AccountKeeper
- func (app *FuryaApp) GetBankKeeper() simtypes.BankKeeper
- func (app *FuryaApp) GetBaseApp() *baseapp.BaseApp
- func (app *FuryaApp) GetIBCKeeper() *ibckeeper.Keeper
- func (app *FuryaApp) GetPoolManagerKeeper() simtypes.PoolManagerKeeper
- func (app *FuryaApp) GetScopedIBCKeeper() capabilitykeeper.ScopedKeeper
- func (app *FuryaApp) GetStakingKeeper() stakingkeeper.Keeper
- func (app *FuryaApp) GetTxConfig() client.TxConfig
- func (app *FuryaApp) InitChainer(ctx sdk.Context, req abci.RequestInitChain) abci.ResponseInitChain
- func (app *FuryaApp) InterfaceRegistry() types.InterfaceRegistry
- func (app *FuryaApp) LegacyAmino() *codec.LegacyAmino
- func (app *FuryaApp) LoadHeight(height int64) error
- func (app *FuryaApp) ModuleManager() module.Manager
- func (app *FuryaApp) Name() string
- func (app *FuryaApp) RegisterAPIRoutes(apiSvr *api.Server, apiConfig config.APIConfig)
- func (app *FuryaApp) RegisterTendermintService(clientCtx client.Context)
- func (app *FuryaApp) RegisterTxService(clientCtx client.Context)
- type GenesisState
Constants ¶
This section is empty.
Variables ¶
var ( // DefaultNodeHome default home directories for the application daemon DefaultNodeHome string // 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(keepers.AppModuleBasics...) // TODO: Refactor wasm items into a wasm.go file // WasmProposalsEnabled enables all x/wasm proposals when it's value is "true" // and EnableSpecificWasmProposals is empty. Otherwise, all x/wasm proposals // are disabled. WasmProposalsEnabled = "true" // EnableSpecificWasmProposals, if set, must be comma-separated list of values // that are all a subset of "EnableAllProposals", which takes precedence over // WasmProposalsEnabled. // // See: https://github.com/CosmWasm/wasmd/blob/02a54d33ff2c064f3539ae12d75d027d9c665f05/x/wasm/internal/types/proposal.go#L28-L34 EnableSpecificWasmProposals = "" // EmptyWasmOpts defines a type alias for a list of wasm options. EmptyWasmOpts []wasm.Option Upgrades = []upgrades.Upgrade{v4.Upgrade, v5.Upgrade, v7.Upgrade, v9.Upgrade, v11.Upgrade, v12.Upgrade, v13.Upgrade, v14.Upgrade, v15.Upgrade, v16.Upgrade, v17.Upgrade, v18.Upgrade, v19.Upgrade, v20.Upgrade} Forks = []upgrades.Fork{v3.Fork, v6.Fork, v8.Fork, v10.Fork} )
Functions ¶
func BeginBlockForks ¶
BeginBlockForks is intended to be ran in a chain upgrade.
func DefaultConfig ¶
DefaultConfig returns a default configuration suitable for nearly all testing requirements.
func GetEncodingConfig ¶
func GetEncodingConfig() params.EncodingConfig
func GetMaccPerms ¶
GetMaccPerms returns a copy of the module account permissions.
func GetWasmEnabledProposals ¶
func GetWasmEnabledProposals() []wasm.ProposalType
GetWasmEnabledProposals parses the WasmProposalsEnabled and EnableSpecificWasmProposals values to produce a list of enabled proposals to pass into the application.
func MakeCodecs ¶
func MakeCodecs() (codec.Codec, *codec.LegacyAmino)
MakeCodecs returns the application codec and a legacy Amino codec.
func MakeEncodingConfig ¶
func MakeEncodingConfig() params.EncodingConfig
MakeEncodingConfig creates an EncodingConfig.
func ModuleAccountAddrs ¶
ModuleAccountAddrs returns all the app's module account addresses.
func NewAnteHandler ¶
func NewAnteHandler( appOpts servertypes.AppOptions, wasmConfig wasm.Config, txCounterStoreKey sdk.StoreKey, ak ante.AccountKeeper, bankKeeper txfeestypes.BankKeeper, txFeesKeeper *txfeeskeeper.Keeper, spotPriceCalculator txfeestypes.SpotPriceCalculator, sigGasConsumer ante.SignatureVerificationGasConsumer, signModeHandler signing.SignModeHandler, channelKeeper *ibckeeper.Keeper, ) sdk.AnteHandler
Link to default ante handler used by cosmos sdk: https://github.com/cosmos/cosmos-sdk/blob/v0.43.0/x/auth/ante/ante.go#L41
func NewAppConstructor ¶
func NewAppConstructor() network.AppConstructor
NewAppConstructor returns a new Furya app given encoding type configs.
func NewPostHandler ¶
func NewPostHandler(protoRevKeeper *protorevkeeper.Keeper) sdk.AnteHandler
func OrderEndBlockers ¶
OrderEndBlockers returns EndBlockers (crisis, govtypes, staking) with no relative order.
func OrderInitGenesis ¶
OrderInitGenesis returns module names in order for init genesis calls.
Types ¶
type FuryaApp ¶
type FuryaApp struct { *baseapp.BaseApp keepers.AppKeepers // contains filtered or unexported fields }
FuryaApp 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 NewFuryaApp ¶
func NewFuryaApp( 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), ) *FuryaApp
NewFuryaApp returns a reference to an initialized Furya.
func SetupTestingAppWithLevelDb ¶
SetupTestingAppWithLevelDb initializes a new FuryaApp intended for testing, with LevelDB as a db.
func SetupWithCustomHome ¶
SetupWithCustomHome initializes a new FuryaApp with a custom home directory
func (*FuryaApp) AppCodec ¶
AppCodec returns Furya' 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 (*FuryaApp) BeginBlocker ¶
func (app *FuryaApp) BeginBlocker(ctx sdk.Context, req abci.RequestBeginBlock) abci.ResponseBeginBlock
BeginBlocker application updates every begin block.
func (*FuryaApp) BlockedAddrs ¶
BlockedAddrs returns all the app's module account addresses that are not allowed to receive external tokens.
func (*FuryaApp) EndBlocker ¶
func (app *FuryaApp) EndBlocker(ctx sdk.Context, req abci.RequestEndBlock) abci.ResponseEndBlock
EndBlocker application updates every end block.
func (*FuryaApp) ExportAppStateAndValidators ¶
func (app *FuryaApp) ExportAppStateAndValidators( forZeroHeight bool, jailAllowedAddrs []string, modulesToExport []string, ) (servertypes.ExportedApp, error)
ExportAppStateAndValidators exports the state of the application for a genesis file.
func (*FuryaApp) ExportState ¶
func (*FuryaApp) GetAccountKeeper ¶
func (app *FuryaApp) GetAccountKeeper() simtypes.AccountKeeper
func (*FuryaApp) GetBankKeeper ¶
func (app *FuryaApp) GetBankKeeper() simtypes.BankKeeper
func (*FuryaApp) GetBaseApp ¶
func (*FuryaApp) GetIBCKeeper ¶
func (*FuryaApp) GetPoolManagerKeeper ¶
func (app *FuryaApp) GetPoolManagerKeeper() simtypes.PoolManagerKeeper
func (*FuryaApp) GetScopedIBCKeeper ¶
func (app *FuryaApp) GetScopedIBCKeeper() capabilitykeeper.ScopedKeeper
func (*FuryaApp) GetStakingKeeper ¶
func (app *FuryaApp) GetStakingKeeper() stakingkeeper.Keeper
Required for ibctesting
func (*FuryaApp) GetTxConfig ¶
func (*FuryaApp) InitChainer ¶
func (app *FuryaApp) InitChainer(ctx sdk.Context, req abci.RequestInitChain) abci.ResponseInitChain
InitChainer application update at chain initialization.
func (*FuryaApp) InterfaceRegistry ¶
func (app *FuryaApp) InterfaceRegistry() types.InterfaceRegistry
InterfaceRegistry returns Furya' InterfaceRegistry.
func (*FuryaApp) LegacyAmino ¶
func (app *FuryaApp) 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 (*FuryaApp) LoadHeight ¶
LoadHeight loads a particular height.
func (*FuryaApp) ModuleManager ¶
func (*FuryaApp) RegisterAPIRoutes ¶
RegisterAPIRoutes registers all application module routes with the provided API server.
func (*FuryaApp) RegisterTendermintService ¶
RegisterTendermintService implements the Application.RegisterTendermintService method.
func (*FuryaApp) RegisterTxService ¶
RegisterTxService implements the Application.RegisterTxService method.
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() GenesisState
NewDefaultGenesisState generates the default state for the application.
Source Files ¶
Directories ¶
Path | Synopsis |
---|---|
Package params defines the simulation parameters in the simapp.
|
Package params defines the simulation parameters in the simapp. |
v8/constants
package v8constants contains constants related to the v8 upgrade.
|
package v8constants contains constants related to the v8 upgrade. |