Documentation
¶
Index ¶
- Variables
- func GenesisStateWithValSet(app *Kairoschain, genesisState simapp.GenesisState, ...) simapp.GenesisState
- func GetMaccPerms() map[string][]string
- func NewDefaultGenesisState() simapp.GenesisState
- func NewTestGenesisState(codec codec.Codec) simapp.GenesisState
- func ObservabilityViews() (views []*view.View)
- func RegisterSwaggerAPI(_ client.Context, rtr *mux.Router)
- func SetupTestingApp(chainID string) func() (ibctesting.TestingApp, map[string]json.RawMessage)
- type Kairoschain
- func EthSetup(isCheckTx bool, ...) *Kairoschain
- func EthSetupWithDB(isCheckTx bool, ...) *Kairoschain
- func NewKairoschain(logger log.Logger, db dbm.DB, traceStore io.Writer, loadLatest bool, ...) *Kairoschain
- func Setup(isCheckTx bool, feemarketGenesis *feemarkettypes.GenesisState, chainID string) *Kairoschain
- func (app *Kairoschain) AppCodec() codec.Codec
- func (app *Kairoschain) BeginBlocker(ctx sdk.Context, req abci.RequestBeginBlock) abci.ResponseBeginBlock
- func (app *Kairoschain) BlockedAddrs() map[string]bool
- func (app *Kairoschain) DeliverTx(req abci.RequestDeliverTx) (res abci.ResponseDeliverTx)
- func (app *Kairoschain) EndBlocker(ctx sdk.Context, req abci.RequestEndBlock) abci.ResponseEndBlock
- func (app *Kairoschain) ExportAppStateAndValidators(forZeroHeight bool, jailAllowedAddrs []string, modulesToExport []string) (servertypes.ExportedApp, error)
- func (app *Kairoschain) GetBaseApp() *baseapp.BaseApp
- func (app *Kairoschain) GetIBCKeeper() *ibckeeper.Keeper
- func (app *Kairoschain) GetKey(storeKey string) *storetypes.KVStoreKey
- func (app *Kairoschain) GetMemKey(storeKey string) *storetypes.MemoryStoreKey
- func (app *Kairoschain) GetScopedIBCKeeper() capabilitykeeper.ScopedKeeper
- func (app *Kairoschain) GetStakingKeeper() ibctestingtypes.StakingKeeper
- func (app *Kairoschain) GetStakingKeeperSDK() stakingkeeper.Keeper
- func (app *Kairoschain) GetSubspace(moduleName string) paramstypes.Subspace
- func (app *Kairoschain) GetTKey(storeKey string) *storetypes.TransientStoreKey
- func (app *Kairoschain) GetTxConfig() client.TxConfig
- func (app *Kairoschain) InitChainer(ctx sdk.Context, req abci.RequestInitChain) abci.ResponseInitChain
- func (app *Kairoschain) InterfaceRegistry() types.InterfaceRegistry
- func (app *Kairoschain) LegacyAmino() *codec.LegacyAmino
- func (app *Kairoschain) LoadHeight(height int64) error
- func (app *Kairoschain) ModuleAccountAddrs() map[string]bool
- func (app *Kairoschain) Name() string
- func (app *Kairoschain) RegisterAPIRoutes(apiSvr *api.Server, apiConfig config.APIConfig)
- func (app *Kairoschain) RegisterNodeService(clientCtx client.Context)
- func (app *Kairoschain) RegisterTendermintService(clientCtx client.Context)
- func (app *Kairoschain) RegisterTxService(clientCtx client.Context)
- func (app *Kairoschain) ScheduleForkUpgrade(ctx sdk.Context)
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( auth.AppModuleBasic{}, genutil.NewAppModuleBasic(genutiltypes.DefaultMessageValidator), bank.AppModuleBasic{}, capability.AppModuleBasic{}, staking.AppModuleBasic{}, distr.AppModuleBasic{}, gov.NewAppModuleBasic( []govclient.ProposalHandler{ paramsclient.ProposalHandler, upgradeclient.LegacyProposalHandler, upgradeclient.LegacyCancelProposalHandler, ibcclientclient.UpdateClientProposalHandler, ibcclientclient.UpgradeProposalHandler, erc20client.RegisterCoinProposalHandler, erc20client.RegisterERC20ProposalHandler, erc20client.ToggleTokenConversionProposalHandler, }, ), params.AppModuleBasic{}, crisis.AppModuleBasic{}, mint.AppModuleBasic{}, slashing.AppModuleBasic{}, ibc.AppModuleBasic{}, ibctm.AppModuleBasic{}, ica.AppModuleBasic{}, authzmodule.AppModuleBasic{}, feegrantmodule.AppModuleBasic{}, upgrade.AppModuleBasic{}, evidence.AppModuleBasic{}, transfer.AppModuleBasic{AppModuleBasic: &ibctransfer.AppModuleBasic{}}, vesting.AppModuleBasic{}, evm.AppModuleBasic{}, feemarket.AppModuleBasic{}, erc20.AppModuleBasic{}, consensus.AppModuleBasic{}, ) )
var ( // MainnetMinGasPrices defines 20B (20 gas-ukai) as the minimum gas price value on the fee market module. // See https://commonwealth.im/evmos/discussion/5073-global-min-gas-price-value-for-cosmos-sdk-and-evm-transaction-choosing-a-value for reference MainnetMinGasPrices = sdk.NewDec(20_000_000_000) // MainnetMinGasMultiplier defines the min gas multiplier value on the fee market module. // 50% of the leftover gas will be refunded MainnetMinGasMultiplier = sdk.NewDecWithPrec(5, 1) )
var DefaultConsensusParams = &tmproto.ConsensusParams{ Block: &tmproto.BlockParams{ MaxBytes: 200000, MaxGas: -1, }, Evidence: &tmproto.EvidenceParams{ MaxAgeNumBlocks: 302400, MaxAgeDuration: 504 * time.Hour, MaxBytes: 10000, }, Validator: &tmproto.ValidatorParams{ PubKeyTypes: []string{ tmtypes.ABCIPubKeyTypeEd25519, }, }, }
DefaultConsensusParams defines the default Tendermint consensus params used in Kairoschain testing.
var DefaultTestingAppInit func(chainId string) func() (ibctesting.TestingApp, map[string]json.RawMessage) = SetupTestingApp
DefaultTestingAppInit defines the IBC application used for testing
var EthDefaultConsensusParams = &tmproto.ConsensusParams{ Block: &tmproto.BlockParams{ MaxBytes: 200000, MaxGas: -1, }, Evidence: &tmproto.EvidenceParams{ MaxAgeNumBlocks: 302400, MaxAgeDuration: 504 * time.Hour, MaxBytes: 10000, }, Validator: &tmproto.ValidatorParams{ PubKeyTypes: []string{ tmtypes.ABCIPubKeyTypeEd25519, }, }, }
EthDefaultConsensusParams defines the default Tendermint consensus params used in Kairoschain app testing.
Functions ¶
func GenesisStateWithValSet ¶
func GenesisStateWithValSet(app *Kairoschain, genesisState simapp.GenesisState, valSet *tmtypes.ValidatorSet, genAccs []authtypes.GenesisAccount, balances ...banktypes.Balance, ) simapp.GenesisState
func GetMaccPerms ¶
GetMaccPerms returns a copy of the module account permissions
func NewDefaultGenesisState ¶
func NewDefaultGenesisState() simapp.GenesisState
NewDefaultGenesisState generates the default state for the application.
func NewTestGenesisState ¶
func NewTestGenesisState(codec codec.Codec) simapp.GenesisState
NewTestGenesisState generate genesis state with single validator
func ObservabilityViews ¶
func RegisterSwaggerAPI ¶
RegisterSwaggerAPI registers swagger route with API Server
func SetupTestingApp ¶
func SetupTestingApp(chainID string) func() (ibctesting.TestingApp, map[string]json.RawMessage)
SetupTestingApp initializes the IBC-go testing application
Types ¶
type Kairoschain ¶
type Kairoschain struct { *baseapp.BaseApp // keepers AccountKeeper authkeeper.AccountKeeper BankKeeper bankkeeper.Keeper CapabilityKeeper *capabilitykeeper.Keeper StakingKeeper *stakingkeeper.Keeper SlashingKeeper slashingkeeper.Keeper DistrKeeper distrkeeper.Keeper GovKeeper govkeeper.Keeper CrisisKeeper *crisiskeeper.Keeper UpgradeKeeper upgradekeeper.Keeper ParamsKeeper paramskeeper.Keeper FeeGrantKeeper feegrantkeeper.Keeper AuthzKeeper authzkeeper.Keeper IBCKeeper *ibckeeper.Keeper // IBC Keeper must be a pointer in the app, so we can SetRouter on it correctly ICAHostKeeper icahostkeeper.Keeper EvidenceKeeper evidencekeeper.Keeper TransferKeeper transferkeeper.Keeper ConsensusParamsKeeper consensusparamkeeper.Keeper MintKeeper mintkeeper.Keeper // make scoped keepers public for test purposes ScopedIBCKeeper capabilitykeeper.ScopedKeeper ScopedTransferKeeper capabilitykeeper.ScopedKeeper // Ethermint keepers EvmKeeper *evmkeeper.Keeper FeeMarketKeeper feemarketkeeper.Keeper // Kairoschain keepers Erc20Keeper erc20keeper.Keeper VestingKeeper vestingkeeper.Keeper // contains filtered or unexported fields }
Kairoschain implements an extended ABCI application. It is an application that may process transactions through Ethereum's EVM running atop of Tendermint consensus.
func EthSetup ¶
func EthSetup(isCheckTx bool, patchGenesis func(*Kairoschain, simapp.GenesisState) simapp.GenesisState) *Kairoschain
EthSetup initializes a new Kairoschain app. A Nop logger is set in Kairoschain app.
func EthSetupWithDB ¶
func EthSetupWithDB(isCheckTx bool, patchGenesis func(*Kairoschain, simapp.GenesisState) simapp.GenesisState, db dbm.DB) *Kairoschain
EthSetupWithDB initializes a new Kairoschain app. A Nop logger is set in Kairoschain app.
func NewKairoschain ¶
func NewKairoschain( logger log.Logger, db dbm.DB, traceStore io.Writer, loadLatest bool, skipUpgradeHeights map[int64]bool, homePath string, invCheckPeriod uint, encodingConfig simappparams.EncodingConfig, appOpts servertypes.AppOptions, baseAppOptions ...func(*baseapp.BaseApp), ) *Kairoschain
NewKairoschain returns a reference to a new initialized Ethermint application.
func Setup ¶
func Setup( isCheckTx bool, feemarketGenesis *feemarkettypes.GenesisState, chainID string, ) *Kairoschain
Setup initializes a new Kairoschain. A Nop logger is set in Kairoschain.
func (*Kairoschain) AppCodec ¶
func (app *Kairoschain) AppCodec() codec.Codec
AppCodec returns Kairoschain'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 (*Kairoschain) BeginBlocker ¶
func (app *Kairoschain) BeginBlocker(ctx sdk.Context, req abci.RequestBeginBlock) abci.ResponseBeginBlock
BeginBlocker runs the Tendermint ABCI BeginBlock logic. It executes state changes at the beginning of the new block for every registered module. If there is a registered fork at the current height, BeginBlocker will schedule the upgrade plan and perform the state migration (if any).
func (*Kairoschain) BlockedAddrs ¶
func (app *Kairoschain) BlockedAddrs() map[string]bool
BlockedAddrs returns all the app's module account addresses that are not allowed to receive external tokens.
func (*Kairoschain) DeliverTx ¶
func (app *Kairoschain) DeliverTx(req abci.RequestDeliverTx) (res abci.ResponseDeliverTx)
The DeliverTx method is intentionally decomposed to calculate the transactions per second.
func (*Kairoschain) EndBlocker ¶
func (app *Kairoschain) EndBlocker(ctx sdk.Context, req abci.RequestEndBlock) abci.ResponseEndBlock
EndBlocker updates every end block
func (*Kairoschain) ExportAppStateAndValidators ¶
func (app *Kairoschain) ExportAppStateAndValidators( forZeroHeight bool, jailAllowedAddrs []string, modulesToExport []string, ) (servertypes.ExportedApp, error)
ExportAppStateAndValidators exports the state of the application for a genesis file.
func (*Kairoschain) GetBaseApp ¶
func (app *Kairoschain) GetBaseApp() *baseapp.BaseApp
GetBaseApp implements the TestingApp interface.
func (*Kairoschain) GetIBCKeeper ¶
func (app *Kairoschain) GetIBCKeeper() *ibckeeper.Keeper
GetIBCKeeper implements the TestingApp interface.
func (*Kairoschain) GetKey ¶
func (app *Kairoschain) 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 (*Kairoschain) GetMemKey ¶
func (app *Kairoschain) GetMemKey(storeKey string) *storetypes.MemoryStoreKey
GetMemKey returns the MemStoreKey for the provided mem key.
NOTE: This is solely used for testing purposes.
func (*Kairoschain) GetScopedIBCKeeper ¶
func (app *Kairoschain) GetScopedIBCKeeper() capabilitykeeper.ScopedKeeper
GetScopedIBCKeeper implements the TestingApp interface.
func (*Kairoschain) GetStakingKeeper ¶
func (app *Kairoschain) GetStakingKeeper() ibctestingtypes.StakingKeeper
GetStakingKeeper implements the TestingApp interface.
func (*Kairoschain) GetStakingKeeperSDK ¶
func (app *Kairoschain) GetStakingKeeperSDK() stakingkeeper.Keeper
GetStakingKeeperSDK implements the TestingApp interface.
func (*Kairoschain) GetSubspace ¶
func (app *Kairoschain) 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 (*Kairoschain) GetTKey ¶
func (app *Kairoschain) 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 (*Kairoschain) GetTxConfig ¶
func (app *Kairoschain) GetTxConfig() client.TxConfig
GetTxConfig implements the TestingApp interface.
func (*Kairoschain) InitChainer ¶
func (app *Kairoschain) InitChainer(ctx sdk.Context, req abci.RequestInitChain) abci.ResponseInitChain
InitChainer updates at chain initialization
func (*Kairoschain) InterfaceRegistry ¶
func (app *Kairoschain) InterfaceRegistry() types.InterfaceRegistry
InterfaceRegistry returns Kairoschain's InterfaceRegistry
func (*Kairoschain) LegacyAmino ¶
func (app *Kairoschain) LegacyAmino() *codec.LegacyAmino
LegacyAmino returns Kairoschain'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 (*Kairoschain) LoadHeight ¶
func (app *Kairoschain) LoadHeight(height int64) error
LoadHeight loads state at a particular height
func (*Kairoschain) ModuleAccountAddrs ¶
func (app *Kairoschain) ModuleAccountAddrs() map[string]bool
ModuleAccountAddrs returns all the app's module account addresses.
func (*Kairoschain) RegisterAPIRoutes ¶
func (app *Kairoschain) RegisterAPIRoutes(apiSvr *api.Server, apiConfig config.APIConfig)
RegisterAPIRoutes registers all application module routes with the provided API server.
func (*Kairoschain) RegisterNodeService ¶
func (app *Kairoschain) RegisterNodeService(clientCtx client.Context)
RegisterNodeService registers the node gRPC service on the provided application gRPC query router.
func (*Kairoschain) RegisterTendermintService ¶
func (app *Kairoschain) RegisterTendermintService(clientCtx client.Context)
RegisterTendermintService implements the Application.RegisterTendermintService method.
func (*Kairoschain) RegisterTxService ¶
func (app *Kairoschain) RegisterTxService(clientCtx client.Context)
func (*Kairoschain) ScheduleForkUpgrade ¶
func (app *Kairoschain) ScheduleForkUpgrade(ctx sdk.Context)
ScheduleForkUpgrade executes any necessary fork logic for based upon the current block height and chain ID (mainnet or testnet). It sets an upgrade plan once the chain reaches the pre-defined upgrade height.
CONTRACT: for this logic to work properly it is required to:
- Release a non-breaking patch version so that the chain can set the scheduled upgrade plan at upgrade-height.
- Release the software defined in the upgrade-info
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). |
upgrades
|
|