Documentation ¶
Index ¶
- Variables
- func GetMaccPerms() map[string][]string
- func NewDefaultGenesisState() simapp.GenesisState
- type OKExChainApp
- func (app *OKExChainApp) BeginBlocker(ctx sdk.Context, req abci.RequestBeginBlock) abci.ResponseBeginBlock
- func (app *OKExChainApp) BlacklistedAccAddrs() map[string]bool
- func (app *OKExChainApp) Codec() *codec.Codec
- func (app *OKExChainApp) DeliverTx(req abci.RequestDeliverTx) (res abci.ResponseDeliverTx)
- func (app *OKExChainApp) EndBlocker(ctx sdk.Context, req abci.RequestEndBlock) abci.ResponseEndBlock
- func (app *OKExChainApp) ExportAppStateAndValidators(forZeroHeight bool, jailWhiteList []string) (appState json.RawMessage, validators []tmtypes.GenesisValidator, err error)
- func (app *OKExChainApp) GetKey(storeKey string) *sdk.KVStoreKey
- func (app *OKExChainApp) GetSubspace(moduleName string) params.Subspace
- func (app *OKExChainApp) InitChainer(ctx sdk.Context, req abci.RequestInitChain) abci.ResponseInitChain
- func (app *OKExChainApp) LoadHeight(height int64) error
- func (app *OKExChainApp) ModuleAccountAddrs() map[string]bool
- func (app *OKExChainApp) Name() string
- func (app *OKExChainApp) SimulationManager() *module.SimulationManager
Constants ¶
This section is empty.
Variables ¶
var ( // DefaultCLIHome sets the default home directories for the application CLI DefaultCLIHome = os.ExpandEnv("$HOME/.okexchaincli") // DefaultNodeHome sets the folder where the applcation data and configuration will be stored DefaultNodeHome = os.ExpandEnv("$HOME/.okexchaind") // 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{}, supply.AppModuleBasic{}, genutil.AppModuleBasic{}, bank.AppModuleBasic{}, staking.AppModuleBasic{}, mint.AppModuleBasic{}, distr.AppModuleBasic{}, gov.NewAppModuleBasic( paramsclient.ProposalHandler, distr.ProposalHandler, dexclient.DelistProposalHandler, farmclient.ManageWhiteListProposalHandler, ), params.AppModuleBasic{}, crisis.AppModuleBasic{}, slashing.AppModuleBasic{}, evidence.AppModuleBasic{}, upgrade.AppModuleBasic{}, evm.AppModuleBasic{}, token.AppModuleBasic{}, dex.AppModuleBasic{}, order.AppModuleBasic{}, backend.AppModuleBasic{}, stream.AppModuleBasic{}, debug.AppModuleBasic{}, ammswap.AppModuleBasic{}, farm.AppModuleBasic{}, ) )
Functions ¶
func GetMaccPerms ¶ added in v0.16.0
GetMaccPerms returns a copy of the module account permissions
func NewDefaultGenesisState ¶ added in v0.16.0
func NewDefaultGenesisState() simapp.GenesisState
NewDefaultGenesisState generates the default state for the application.
Types ¶
type OKExChainApp ¶
type OKExChainApp struct { *bam.BaseApp // keepers AccountKeeper auth.AccountKeeper BankKeeper bank.Keeper SupplyKeeper supply.Keeper StakingKeeper staking.Keeper SlashingKeeper slashing.Keeper MintKeeper mint.Keeper DistrKeeper distr.Keeper GovKeeper gov.Keeper CrisisKeeper crisis.Keeper UpgradeKeeper upgrade.Keeper ParamsKeeper params.Keeper EvidenceKeeper evidence.Keeper EvmKeeper *evm.Keeper TokenKeeper token.Keeper DexKeeper dex.Keeper OrderKeeper order.Keeper SwapKeeper ammswap.Keeper FarmKeeper farm.Keeper BackendKeeper backend.Keeper StreamKeeper stream.Keeper // contains filtered or unexported fields }
OKExChainApp implements an extended ABCI application. It is an application that may process transactions through Ethereum's EVM running atop of Tendermint consensus.
func NewOKExChainApp ¶
func NewOKExChainApp( logger log.Logger, db dbm.DB, traceStore io.Writer, loadLatest bool, skipUpgradeHeights map[int64]bool, invCheckPeriod uint, baseAppOptions ...func(*bam.BaseApp), ) *OKExChainApp
NewOKExChainApp returns a reference to a new initialized OKExChain application.
func Setup ¶ added in v0.16.0
func Setup(isCheckTx bool) *OKExChainApp
Setup initializes a new OKExChainApp. A Nop logger is set in OKExChainApp.
func (*OKExChainApp) BeginBlocker ¶ added in v0.16.0
func (app *OKExChainApp) BeginBlocker(ctx sdk.Context, req abci.RequestBeginBlock) abci.ResponseBeginBlock
BeginBlocker updates every begin block
func (*OKExChainApp) BlacklistedAccAddrs ¶ added in v0.16.0
func (app *OKExChainApp) BlacklistedAccAddrs() map[string]bool
BlacklistedAccAddrs returns all the app's module account addresses black listed for receiving tokens.
func (*OKExChainApp) Codec ¶ added in v0.16.0
func (app *OKExChainApp) Codec() *codec.Codec
Codec returns OKExChain'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 (*OKExChainApp) DeliverTx ¶
func (app *OKExChainApp) DeliverTx(req abci.RequestDeliverTx) (res abci.ResponseDeliverTx)
func (*OKExChainApp) EndBlocker ¶ added in v0.16.0
func (app *OKExChainApp) EndBlocker(ctx sdk.Context, req abci.RequestEndBlock) abci.ResponseEndBlock
EndBlocker updates every end block
func (*OKExChainApp) ExportAppStateAndValidators ¶
func (app *OKExChainApp) ExportAppStateAndValidators( forZeroHeight bool, jailWhiteList []string, ) (appState json.RawMessage, validators []tmtypes.GenesisValidator, err error)
ExportAppStateAndValidators exports the state of the application for a genesis file.
func (*OKExChainApp) GetKey ¶ added in v0.16.0
func (app *OKExChainApp) 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 (*OKExChainApp) GetSubspace ¶ added in v0.16.0
func (app *OKExChainApp) GetSubspace(moduleName string) params.Subspace
GetSubspace returns a param subspace for a given module name.
NOTE: This is solely to be used for testing purposes.
func (*OKExChainApp) InitChainer ¶ added in v0.16.0
func (app *OKExChainApp) InitChainer(ctx sdk.Context, req abci.RequestInitChain) abci.ResponseInitChain
InitChainer updates at chain initialization
func (*OKExChainApp) LoadHeight ¶
func (app *OKExChainApp) LoadHeight(height int64) error
LoadHeight loads state at a particular height
func (*OKExChainApp) ModuleAccountAddrs ¶ added in v0.16.0
func (app *OKExChainApp) ModuleAccountAddrs() map[string]bool
ModuleAccountAddrs returns all the app's module account addresses.
func (*OKExChainApp) Name ¶ added in v0.16.0
func (app *OKExChainApp) Name() string
Name returns the name of the App
func (*OKExChainApp) SimulationManager ¶ added in v0.16.0
func (app *OKExChainApp) SimulationManager() *module.SimulationManager
SimulationManager implements the SimulationApp interface
Directories ¶
Path | Synopsis |
---|---|
Package ante defines the SDK auth module's AnteHandler as well as an internal AnteHandler for an Ethereum transaction (i.e MsgEthereumTx).
|
Package ante defines the SDK auth module's AnteHandler as well as an internal AnteHandler for an Ethereum transaction (i.e MsgEthereumTx). |
crypto
|
|
Package rpc contains RPC handler methods, namespaces and utilities to start Ethermint's Web3-compatible JSON-RPC server.
|
Package rpc contains RPC handler methods, namespaces and utilities to start Ethermint's Web3-compatible JSON-RPC server. |