Documentation
¶
Index ¶
- Constants
- Variables
- func GetMaccPerms() map[string][]string
- func NewAccHandler(ak auth.AccountKeeper) sdk.AccHandler
- func NewDefaultGenesisState() simapp.GenesisState
- func PreRun(ctx *server.Context) error
- func RepairState(ctx *server.Context, onStart bool)
- type ElapsedTimeInfos
- type GasPriceIndex
- type OKExChainApp
- func (app *OKExChainApp) BeginBlock(req abci.RequestBeginBlock) (res abci.ResponseBeginBlock)
- func (app *OKExChainApp) BeginBlocker(ctx sdk.Context, req abci.RequestBeginBlock) abci.ResponseBeginBlock
- func (app *OKExChainApp) Codec() *codec.Codec
- func (app *OKExChainApp) Commit(req abci.RequestCommit) abci.ResponseCommit
- func (app *OKExChainApp) DeliverTx(req abci.RequestDeliverTx) (res abci.ResponseDeliverTx)
- func (app *OKExChainApp) EndBlock(req abci.RequestEndBlock) (res abci.ResponseEndBlock)
- 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) LoadStartVersion(height int64) error
- func (app *OKExChainApp) ModuleAccountAddrs() map[string]bool
- func (app *OKExChainApp) Name() string
- func (app *OKExChainApp) SetOption(req abci.RequestSetOption) (res abci.ResponseSetOption)
- func (app *OKExChainApp) SimulationManager() *module.SimulationManager
Constants ¶
const ( FlagStartHeight string = "start-height" FlagEnableRepairState string = "enable-repair-state" )
const (
Elapsed = "elapsed"
)
Variables ¶
var ( // DefaultCLIHome sets the default home directories for the application CLI DefaultCLIHome = os.ExpandEnv("$HOME/.exchaincli") // DefaultNodeHome sets the folder where the applcation data and configuration will be stored DefaultNodeHome = os.ExpandEnv("$HOME/.exchaind") // 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, evmclient.ManageContractDeploymentWhitelistProposalHandler, evmclient.ManageContractBlockedListProposalHandler, evmclient.ManageContractMethodBlockedListProposalHandler, ), 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{}, ) GlobalGpIndex = GasPriceIndex{} )
var ( CUSTOM_PRINT = []string{ trace.Evm, trace.Delta, trace.Iavl, trace.DeliverTxs, trace.Round, trace.CommitRound, trace.Produce} DefaultElapsedSchemas = fmt.Sprintf("%s=1,%s=1,%s=1,%s=1,%s=0,%s=0,%s=0", trace.Evm, trace.Delta, trace.Iavl, trace.DeliverTxs, trace.Round, trace.CommitRound, trace.Produce) )
Functions ¶
func GetMaccPerms ¶
GetMaccPerms returns a copy of the module account permissions
func NewAccHandler ¶ added in v0.18.17
func NewAccHandler(ak auth.AccountKeeper) sdk.AccHandler
func NewDefaultGenesisState ¶
func NewDefaultGenesisState() simapp.GenesisState
NewDefaultGenesisState generates the default state for the application.
func RepairState ¶ added in v1.0.0
Types ¶
type ElapsedTimeInfos ¶ added in v0.19.10
type ElapsedTimeInfos struct {
// contains filtered or unexported fields
}
func (*ElapsedTimeInfos) AddInfo ¶ added in v0.19.10
func (e *ElapsedTimeInfos) AddInfo(key string, info string)
func (*ElapsedTimeInfos) Dump ¶ added in v0.19.10
func (e *ElapsedTimeInfos) Dump(logger log.Logger)
func (*ElapsedTimeInfos) GetElapsedTime ¶ added in v0.19.12
func (e *ElapsedTimeInfos) GetElapsedTime() int64
func (*ElapsedTimeInfos) SetElapsedTime ¶ added in v0.19.12
func (e *ElapsedTimeInfos) SetElapsedTime(elapsedTime int64)
type GasPriceIndex ¶ added in v0.18.17
func CalBlockGasPriceIndex ¶ added in v0.18.17
func CalBlockGasPriceIndex(blockGasPrice []*big.Int, weight int) GasPriceIndex
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 ¶
func Setup(isCheckTx bool) *OKExChainApp
Setup initializes a new OKExChainApp. A Nop logger is set in OKExChainApp.
func (*OKExChainApp) BeginBlock ¶
func (app *OKExChainApp) BeginBlock(req abci.RequestBeginBlock) (res abci.ResponseBeginBlock)
BeginBlock implements the Application interface
func (*OKExChainApp) BeginBlocker ¶
func (app *OKExChainApp) BeginBlocker(ctx sdk.Context, req abci.RequestBeginBlock) abci.ResponseBeginBlock
BeginBlocker updates every begin block
func (*OKExChainApp) Codec ¶
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) Commit ¶
func (app *OKExChainApp) Commit(req abci.RequestCommit) abci.ResponseCommit
Commit implements the Application interface
func (*OKExChainApp) DeliverTx ¶
func (app *OKExChainApp) DeliverTx(req abci.RequestDeliverTx) (res abci.ResponseDeliverTx)
func (*OKExChainApp) EndBlock ¶
func (app *OKExChainApp) EndBlock(req abci.RequestEndBlock) (res abci.ResponseEndBlock)
EndBlock implements the Application interface
func (*OKExChainApp) EndBlocker ¶
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 ¶
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 ¶
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 ¶
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) LoadStartVersion ¶ added in v0.19.4
func (app *OKExChainApp) LoadStartVersion(height int64) error
func (*OKExChainApp) ModuleAccountAddrs ¶
func (app *OKExChainApp) ModuleAccountAddrs() map[string]bool
ModuleAccountAddrs returns all the app's module account addresses.
func (*OKExChainApp) SetOption ¶ added in v1.0.2
func (app *OKExChainApp) SetOption(req abci.RequestSetOption) (res abci.ResponseSetOption)
func (*OKExChainApp) SimulationManager ¶
func (app *OKExChainApp) SimulationManager() *module.SimulationManager
SimulationManager implements the SimulationApp interface
Source Files
¶
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. |