Documentation ¶
Index ¶
- Constants
- Variables
- func AppStateFn(cdc codec.JSONCodec, simManager *module.SimulationManager) simtypes.AppStateFn
- func AppStateFromGenesisFileFn(r io.Reader, cdc codec.JSONCodec, genesisFile string) (*tmtypes.GenesisDoc, []simtypes.Account)
- func AppStateRandomizedFn(simManager *module.SimulationManager, r *rand.Rand, cdc codec.JSONCodec, ...) (json.RawMessage, []simtypes.Account)
- func ConsumeMultisignatureVerificationGas(meter storetypes.GasMeter, sig *signing.MultiSignatureData, ...) error
- func GenAndDeliverTx(txCtx simulation.OperationInput, fees sdk.Coins) (simtypes.OperationMsg, []simtypes.FutureOperation, error)
- func GenAndDeliverTxWithRandFees(txCtx simulation.OperationInput) (simtypes.OperationMsg, []simtypes.FutureOperation, error)
- func GeneratorFieldMapper(t *rapid.T, field protoreflect.FieldDescriptor, name string) (protoreflect.Value, bool)
- func ObservabilityViews() (views []*view.View)
- func RandomAccounts(r *rand.Rand, n int) []simtypes.Account
- func RandomGenesisAccounts(simState *module.SimulationState) authtypes.GenesisAccounts
- func RegisterSwaggerAPI(_ client.Context, rtr *mux.Router, swaggerEnabled bool) error
- func SigVerificationGasConsumer(meter storetypes.GasMeter, sig signing.SignatureV2, params authtypes.Params) error
- func WithDecisionPolicy(opts rapidproto.GeneratorOptions) rapidproto.GeneratorOptions
- type Canto
- func (app *Canto) AppCodec() codec.Codec
- func (app *Canto) AutoCliOpts() autocli.AppOptions
- func (app *Canto) BeginBlocker(ctx sdk.Context) (sdk.BeginBlock, error)
- func (app *Canto) BlockedAddrs() map[string]bool
- func (app *Canto) Configurator() module.Configurator
- func (app *Canto) DefaultGenesis() map[string]json.RawMessage
- func (app *Canto) EndBlocker(ctx sdk.Context) (sdk.EndBlock, error)
- func (app *Canto) ExportAppStateAndValidators(forZeroHeight bool, jailAllowedAddrs []string, modulesToExport []string) (servertypes.ExportedApp, error)
- func (app *Canto) FinalizeBlock(req *abci.RequestFinalizeBlock) (*abci.ResponseFinalizeBlock, error)
- func (app *Canto) GetBaseApp() *baseapp.BaseApp
- func (app *Canto) GetCoinswapKeeper() coinswapkeeper.Keeper
- func (app *Canto) GetErc20Keeper() erc20keeper.Keeper
- func (app *Canto) GetIBCKeeper() *ibckeeper.Keeper
- func (app *Canto) GetKey(storeKey string) *storetypes.KVStoreKey
- func (app *Canto) GetMemKey(storeKey string) *storetypes.MemoryStoreKey
- func (app *Canto) GetOnboardingKeeper() *onboardingkeeper.Keeper
- func (app *Canto) GetScopedIBCKeeper() capabilitykeeper.ScopedKeeper
- func (app *Canto) GetStakingKeeper() ibctestingtypes.StakingKeeper
- func (app *Canto) GetStoreKeys() []storetypes.StoreKey
- func (app *Canto) GetSubspace(moduleName string) paramstypes.Subspace
- func (app *Canto) GetTKey(storeKey string) *storetypes.TransientStoreKey
- func (app *Canto) GetTxConfig() client.TxConfig
- func (app *Canto) InitChainer(ctx sdk.Context, req *abci.RequestInitChain) (*abci.ResponseInitChain, error)
- func (app *Canto) InterfaceRegistry() types.InterfaceRegistry
- func (app *Canto) LegacyAmino() *codec.LegacyAmino
- func (app *Canto) LoadHeight(height int64) error
- func (app *Canto) ModuleAccountAddrs() map[string]bool
- func (app *Canto) Name() string
- func (app *Canto) PreBlocker(ctx sdk.Context, _ *abci.RequestFinalizeBlock) (*sdk.ResponsePreBlock, error)
- func (app *Canto) RegisterAPIRoutes(apiSvr *api.Server, apiConfig config.APIConfig)
- func (app *Canto) RegisterNodeService(clientCtx client.Context, cfg config.Config)
- func (app *Canto) RegisterTendermintService(clientCtx client.Context)
- func (app *Canto) RegisterTxService(clientCtx client.Context)
- func (app *Canto) SimulationManager() *module.SimulationManager
- func (app *Canto) TxConfig() client.TxConfig
- type GeneratedType
- type GenesisState
Constants ¶
const Name = "cantod"
Name defines the application binary name
Variables ¶
var ( GenOpts = rapidproto.GeneratorOptions{ Resolver: protoregistry.GlobalTypes, FieldMaps: []rapidproto.FieldMapper{GeneratorFieldMapper}, } SignableTypes = []GeneratedType{ GenType(&authtypes.MsgUpdateParams{}, &authapi.MsgUpdateParams{}, GenOpts.WithDisallowNil()), GenType(&authztypes.MsgGrant{}, &authzapi.MsgGrant{}, GenOpts.WithAnyTypes(&authzapi.GenericAuthorization{}). WithInterfaceHint("cosmos.authz.v1beta1.Authorization", &authzapi.GenericAuthorization{}). WithDisallowNil(), ), GenType(&authztypes.MsgExec{}, &authzapi.MsgExec{}, GenOpts.WithAnyTypes(&authzapi.MsgGrant{}, &authzapi.GenericAuthorization{}). WithDisallowNil(). WithInterfaceHint("cosmos.authz.v1beta1.Authorization", &authzapi.GenericAuthorization{}). WithInterfaceHint("cosmos.base.v1beta1.Msg", &authzapi.MsgGrant{}), ), GenType(&banktypes.MsgSend{}, &bankapi.MsgSend{}, GenOpts.WithDisallowNil()), GenType(&banktypes.MsgMultiSend{}, &bankapi.MsgMultiSend{}, GenOpts.WithDisallowNil()), GenType(&banktypes.MsgUpdateParams{}, &bankapi.MsgUpdateParams{}, GenOpts.WithDisallowNil()), GenType(&banktypes.MsgSetSendEnabled{}, &bankapi.MsgSetSendEnabled{}, GenOpts), GenType(&consensustypes.MsgUpdateParams{}, &consensusapi.MsgUpdateParams{}, GenOpts.WithDisallowNil()), GenType(&disttypes.MsgWithdrawDelegatorReward{}, &distapi.MsgWithdrawDelegatorReward{}, GenOpts), GenType(&disttypes.MsgWithdrawValidatorCommission{}, &distapi.MsgWithdrawValidatorCommission{}, GenOpts), GenType(&disttypes.MsgSetWithdrawAddress{}, &distapi.MsgSetWithdrawAddress{}, GenOpts), GenType(&disttypes.MsgFundCommunityPool{}, &distapi.MsgFundCommunityPool{}, GenOpts), GenType(&disttypes.MsgUpdateParams{}, &distapi.MsgUpdateParams{}, GenOpts.WithDisallowNil()), GenType(&disttypes.MsgCommunityPoolSpend{}, &distapi.MsgCommunityPoolSpend{}, GenOpts), GenType(&disttypes.MsgDepositValidatorRewardsPool{}, &distapi.MsgDepositValidatorRewardsPool{}, GenOpts), GenType(&evidencetypes.MsgSubmitEvidence{}, &evidenceapi.MsgSubmitEvidence{}, GenOpts.WithAnyTypes(&evidenceapi.Equivocation{}). WithDisallowNil(). WithInterfaceHint("cosmos.evidence.v1beta1.Evidence", &evidenceapi.Equivocation{})), GenType(&feegranttypes.MsgGrantAllowance{}, &feegrantapi.MsgGrantAllowance{}, GenOpts.WithDisallowNil(). WithAnyTypes( &feegrantapi.BasicAllowance{}, &feegrantapi.PeriodicAllowance{}). WithInterfaceHint("cosmos.feegrant.v1beta1.FeeAllowanceI", &feegrantapi.BasicAllowance{}). WithInterfaceHint("cosmos.feegrant.v1beta1.FeeAllowanceI", &feegrantapi.PeriodicAllowance{}), ), GenType(&feegranttypes.MsgRevokeAllowance{}, &feegrantapi.MsgRevokeAllowance{}, GenOpts), GenType(&gov_v1beta1_types.MsgSubmitProposal{}, &gov_v1beta1_api.MsgSubmitProposal{}, GenOpts.WithAnyTypes(&gov_v1beta1_api.TextProposal{}). WithDisallowNil(). WithInterfaceHint("cosmos.gov.v1beta1.Content", &gov_v1beta1_api.TextProposal{}), ), GenType(&gov_v1beta1_types.MsgDeposit{}, &gov_v1beta1_api.MsgDeposit{}, GenOpts), GenType(&gov_v1beta1_types.MsgVote{}, &gov_v1beta1_api.MsgVote{}, GenOpts), GenType(&gov_v1beta1_types.MsgVoteWeighted{}, &gov_v1beta1_api.MsgVoteWeighted{}, GenOpts), GenType(&gov_v1_types.MsgSubmitProposal{}, &gov_v1_api.MsgSubmitProposal{}, GenOpts.WithAnyTypes(&gov_v1_api.MsgVote{}, &gov_v1_api.MsgVoteWeighted{}, &gov_v1_api.MsgDeposit{}, &gov_v1_api.MsgExecLegacyContent{}, &gov_v1_api.MsgUpdateParams{}). WithInterfaceHint("cosmos.gov.v1beta1.Content", &gov_v1beta1_api.TextProposal{}). WithDisallowNil(), ), GenType(&gov_v1_types.MsgDeposit{}, &gov_v1_api.MsgDeposit{}, GenOpts), GenType(&gov_v1_types.MsgVote{}, &gov_v1_api.MsgVote{}, GenOpts), GenType(&gov_v1_types.MsgVoteWeighted{}, &gov_v1_api.MsgVoteWeighted{}, GenOpts), GenType(&gov_v1_types.MsgExecLegacyContent{}, &gov_v1_api.MsgExecLegacyContent{}, GenOpts.WithAnyTypes(&gov_v1beta1_api.TextProposal{}). WithDisallowNil(). WithInterfaceHint("cosmos.gov.v1beta1.Content", &gov_v1beta1_api.TextProposal{})), GenType(&gov_v1_types.MsgUpdateParams{}, &gov_v1_api.MsgUpdateParams{}, GenOpts.WithDisallowNil()), GenType(&grouptypes.MsgCreateGroup{}, &groupapi.MsgCreateGroup{}, GenOpts), GenType(&grouptypes.MsgUpdateGroupMembers{}, &groupapi.MsgUpdateGroupMembers{}, GenOpts), GenType(&grouptypes.MsgUpdateGroupAdmin{}, &groupapi.MsgUpdateGroupAdmin{}, GenOpts), GenType(&grouptypes.MsgUpdateGroupMetadata{}, &groupapi.MsgUpdateGroupMetadata{}, GenOpts), GenType(&grouptypes.MsgCreateGroupWithPolicy{}, &groupapi.MsgCreateGroupWithPolicy{}, WithDecisionPolicy(GenOpts)), GenType(&grouptypes.MsgCreateGroupPolicy{}, &groupapi.MsgCreateGroupPolicy{}, WithDecisionPolicy(GenOpts)), GenType(&grouptypes.MsgUpdateGroupPolicyAdmin{}, &groupapi.MsgUpdateGroupPolicyAdmin{}, GenOpts), GenType(&grouptypes.MsgUpdateGroupPolicyDecisionPolicy{}, &groupapi.MsgUpdateGroupPolicyDecisionPolicy{}, WithDecisionPolicy(GenOpts)), GenType(&grouptypes.MsgUpdateGroupPolicyMetadata{}, &groupapi.MsgUpdateGroupPolicyMetadata{}, GenOpts), GenType(&grouptypes.MsgSubmitProposal{}, &groupapi.MsgSubmitProposal{}, GenOpts.WithDisallowNil(). WithAnyTypes(&groupapi.MsgCreateGroup{}, &groupapi.MsgUpdateGroupMembers{}). WithInterfaceHint("cosmos.base.v1beta1.Msg", &groupapi.MsgCreateGroup{}). WithInterfaceHint("cosmos.base.v1beta1.Msg", &groupapi.MsgUpdateGroupMembers{}), ), GenType(&grouptypes.MsgVote{}, &groupapi.MsgVote{}, GenOpts), GenType(&grouptypes.MsgExec{}, &groupapi.MsgExec{}, GenOpts), GenType(&grouptypes.MsgLeaveGroup{}, &groupapi.MsgLeaveGroup{}, GenOpts), GenType(&minttypes.MsgUpdateParams{}, &mintapi.MsgUpdateParams{}, GenOpts.WithDisallowNil()), GenType(&slashingtypes.MsgUnjail{}, &slashingapi.MsgUnjail{}, GenOpts), GenType(&slashingtypes.MsgUpdateParams{}, &slashingapi.MsgUpdateParams{}, GenOpts.WithDisallowNil()), GenType(&stakingtypes.MsgCreateValidator{}, &stakingapi.MsgCreateValidator{}, GenOpts.WithDisallowNil(). WithAnyTypes(&ed25519.PubKey{}). WithInterfaceHint("cosmos.crypto.PubKey", &ed25519.PubKey{}), ), GenType(&stakingtypes.MsgEditValidator{}, &stakingapi.MsgEditValidator{}, GenOpts.WithDisallowNil()), GenType(&stakingtypes.MsgDelegate{}, &stakingapi.MsgDelegate{}, GenOpts.WithDisallowNil()), GenType(&stakingtypes.MsgUndelegate{}, &stakingapi.MsgUndelegate{}, GenOpts.WithDisallowNil()), GenType(&stakingtypes.MsgBeginRedelegate{}, &stakingapi.MsgBeginRedelegate{}, GenOpts.WithDisallowNil()), GenType(&stakingtypes.MsgUpdateParams{}, &stakingapi.MsgUpdateParams{}, GenOpts.WithDisallowNil()), GenType(&upgradetypes.MsgSoftwareUpgrade{}, &upgradeapi.MsgSoftwareUpgrade{}, GenOpts.WithDisallowNil()), GenType(&upgradetypes.MsgCancelUpgrade{}, &upgradeapi.MsgCancelUpgrade{}, GenOpts), GenType(&vestingtypes.MsgCreateVestingAccount{}, &vestingapi.MsgCreateVestingAccount{}, GenOpts), GenType(&vestingtypes.MsgCreatePermanentLockedAccount{}, &vestingapi.MsgCreatePermanentLockedAccount{}, GenOpts), GenType(&vestingtypes.MsgCreatePeriodicVestingAccount{}, &vestingapi.MsgCreatePeriodicVestingAccount{}, GenOpts), } NonsignableTypes = []GeneratedType{ GenType(&authtypes.Params{}, &authapi.Params{}, GenOpts), GenType(&authtypes.BaseAccount{}, &authapi.BaseAccount{}, GenOpts.WithAnyTypes(&ed25519.PubKey{})), GenType(&authtypes.ModuleAccount{}, &authapi.ModuleAccount{}, GenOpts.WithAnyTypes(&ed25519.PubKey{})), GenType(&authtypes.ModuleCredential{}, &authapi.ModuleCredential{}, GenOpts), GenType(&authztypes.GenericAuthorization{}, &authzapi.GenericAuthorization{}, GenOpts), GenType(&authztypes.Grant{}, &authzapi.Grant{}, GenOpts.WithAnyTypes(&authzapi.GenericAuthorization{}). WithDisallowNil(). WithInterfaceHint("cosmos.authz.v1beta1.Authorization", &authzapi.GenericAuthorization{}), ), GenType(&banktypes.SendAuthorization{}, &bankapi.SendAuthorization{}, GenOpts), GenType(&banktypes.Params{}, &bankapi.Params{}, GenOpts), GenType(&multisig.LegacyAminoPubKey{}, &multisigapi.LegacyAminoPubKey{}, GenOpts.WithAnyTypes(&ed25519.PubKey{}, &secp256k1.PubKey{})), GenType(&disttypes.Params{}, &distapi.Params{}, GenOpts), GenType(&evidencetypes.Equivocation{}, &evidenceapi.Equivocation{}, GenOpts.WithDisallowNil()), GenType(&feegranttypes.BasicAllowance{}, &feegrantapi.BasicAllowance{}, GenOpts.WithDisallowNil()), GenType(&feegranttypes.PeriodicAllowance{}, &feegrantapi.PeriodicAllowance{}, GenOpts.WithDisallowNil()), GenType(&feegranttypes.AllowedMsgAllowance{}, &feegrantapi.AllowedMsgAllowance{}, GenOpts.WithDisallowNil(). WithAnyTypes( &feegrantapi.BasicAllowance{}, &feegrantapi.PeriodicAllowance{}). WithInterfaceHint("cosmos.feegrant.v1beta1.FeeAllowanceI", &feegrantapi.BasicAllowance{}). WithInterfaceHint("cosmos.feegrant.v1beta1.FeeAllowanceI", &feegrantapi.PeriodicAllowance{}), ), GenType(&gov_v1beta1_types.TextProposal{}, &gov_v1beta1_api.TextProposal{}, GenOpts), GenType(&minttypes.Params{}, &mintapi.Params{}, GenOpts), GenType(&proposal.ParameterChangeProposal{}, ¶msapi.ParameterChangeProposal{}, GenOpts), GenType(&slashingtypes.Params{}, &slashingapi.Params{}, GenOpts.WithDisallowNil()), GenType(&stakingtypes.StakeAuthorization{}, &stakingapi.StakeAuthorization{}, GenOpts), GenType(&upgradetypes.CancelSoftwareUpgradeProposal{}, &upgradeapi.CancelSoftwareUpgradeProposal{}, GenOpts), GenType(&upgradetypes.SoftwareUpgradeProposal{}, &upgradeapi.SoftwareUpgradeProposal{}, GenOpts.WithDisallowNil()), GenType(&upgradetypes.Plan{}, &upgradeapi.Plan{}, GenOpts.WithDisallowNil()), GenType(&vestingtypes.BaseVestingAccount{}, &vestingapi.BaseVestingAccount{}, GenOpts.WithDisallowNil()), GenType(&vestingtypes.ContinuousVestingAccount{}, &vestingapi.ContinuousVestingAccount{}, GenOpts.WithDisallowNil()), GenType(&vestingtypes.DelayedVestingAccount{}, &vestingapi.DelayedVestingAccount{}, GenOpts.WithDisallowNil()), GenType(&vestingtypes.PermanentLockedAccount{}, &vestingapi.PermanentLockedAccount{}, GenOpts.WithDisallowNil()), GenType(&vestingtypes.PeriodicVestingAccount{}, &vestingapi.PeriodicVestingAccount{}, GenOpts.WithDisallowNil()), } DefaultGeneratedTypes = append(SignableTypes, NonsignableTypes...) )
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 canto testing.
var ( // DefaultNodeHome default home directories for the application daemon DefaultNodeHome string )
var FlagGenesisTimeValue = int64(1640995200)
Functions ¶
func AppStateFn ¶
func AppStateFn(cdc codec.JSONCodec, simManager *module.SimulationManager) simtypes.AppStateFn
AppStateFn returns the initial application state using a genesis or the simulation parameters. It panics if the user provides files for both of them. If a file is not given for the genesis or the sim params, it creates a randomized one.
func AppStateFromGenesisFileFn ¶
func AppStateFromGenesisFileFn(r io.Reader, cdc codec.JSONCodec, genesisFile string) (*tmtypes.GenesisDoc, []simtypes.Account)
AppStateFromGenesisFileFn util function to generate the genesis AppState from a genesis.json file.
func AppStateRandomizedFn ¶
func AppStateRandomizedFn( simManager *module.SimulationManager, r *rand.Rand, cdc codec.JSONCodec, accs []simtypes.Account, genesisTimestamp time.Time, appParams simtypes.AppParams, ) (json.RawMessage, []simtypes.Account)
AppStateRandomizedFn creates calls each module's GenesisState generator function and creates the simulation params
func ConsumeMultisignatureVerificationGas ¶
func ConsumeMultisignatureVerificationGas( meter storetypes.GasMeter, sig *signing.MultiSignatureData, pubkey multisig.PubKey, params authtypes.Params, accSeq uint64, ) error
ConsumeMultisignatureVerificationGas consumes gas from a GasMeter for verifying a multisig pubkey signature
func GenAndDeliverTx ¶
func GenAndDeliverTx(txCtx simulation.OperationInput, fees sdk.Coins) (simtypes.OperationMsg, []simtypes.FutureOperation, error)
GenAndDeliverTx generates a transactions and delivers it.
func GenAndDeliverTxWithRandFees ¶
func GenAndDeliverTxWithRandFees(txCtx simulation.OperationInput) (simtypes.OperationMsg, []simtypes.FutureOperation, error)
GenAndDeliverTxWithRandFees generates a transaction with a random fee and delivers it.
func GeneratorFieldMapper ¶
func GeneratorFieldMapper(t *rapid.T, field protoreflect.FieldDescriptor, name string) (protoreflect.Value, bool)
func ObservabilityViews ¶
func RandomAccounts ¶
RandomAccounts generates n random accounts
func RandomGenesisAccounts ¶
func RandomGenesisAccounts(simState *module.SimulationState) authtypes.GenesisAccounts
RandomGenesisAccounts is used by the auth module to create random genesis accounts in simulation when a genesis.json is not specified. In contrast, the default auth module's RandomGenesisAccounts implementation creates only base accounts and vestings accounts.
func RegisterSwaggerAPI ¶
RegisterSwaggerAPI registers swagger route with API Server
func SigVerificationGasConsumer ¶
func SigVerificationGasConsumer( meter storetypes.GasMeter, sig signing.SignatureV2, params authtypes.Params, ) error
SigVerificationGasConsumer is the canto implementation of SignatureVerificationGasConsumer. It consumes gas for signature verification based upon the public key type. The cost is fetched from the given params and is matched by the concrete type. The types of keys supported are:
- ethsecp256k1 (Ethereum keys)
- ed25519 (Validators)
- multisig (Cosmos SDK multisigs)
func WithDecisionPolicy ¶
func WithDecisionPolicy(opts rapidproto.GeneratorOptions) rapidproto.GeneratorOptions
Types ¶
type Canto ¶
type Canto struct { *baseapp.BaseApp // keepers AccountKeeper authkeeper.AccountKeeper BankKeeper bankkeeper.Keeper StakingKeeper *stakingkeeper.Keeper SlashingKeeper slashingkeeper.Keeper DistrKeeper distrkeeper.Keeper GovKeeper govkeeper.Keeper CrisisKeeper *crisiskeeper.Keeper UpgradeKeeper *upgradekeeper.Keeper ParamsKeeper paramskeeper.Keeper AuthzKeeper authzkeeper.Keeper EvidenceKeeper evidencekeeper.Keeper FeeGrantKeeper feegrantkeeper.Keeper ConsensusParamsKeeper consensusparamkeeper.Keeper IBCKeeper *ibckeeper.Keeper // IBC Keeper must be a pointer in the app, so we can SetRouter on it correctly TransferKeeper ibctransferkeeper.Keeper CapabilityKeeper *capabilitykeeper.Keeper // make scoped keepers public for test purposes ScopedIBCKeeper capabilitykeeper.ScopedKeeper ScopedTransferKeeper capabilitykeeper.ScopedKeeper // Ethermint keepers EvmKeeper *evmkeeper.Keeper FeeMarketKeeper feemarketkeeper.Keeper // Canto keepers InflationKeeper inflationkeeper.Keeper Erc20Keeper erc20keeper.Keeper EpochsKeeper epochskeeper.Keeper OnboardingKeeper *onboardingkeeper.Keeper GovshuttleKeeper govshuttlekeeper.Keeper CSRKeeper csrkeeper.Keeper // Coinswap keeper CoinswapKeeper coinswapkeeper.Keeper // the module manager ModuleManager *module.Manager BasicModuleManager module.BasicManager // contains filtered or unexported fields }
Canto implements an extended ABCI application. It is an application that may process transactions through Ethereum's EVM running atop of Tendermint consensus.
func NewCanto ¶
func NewCanto( logger log.Logger, db dbm.DB, traceStore io.Writer, loadLatest bool, skipUpgradeHeights map[int64]bool, homePath string, invCheckPeriod uint, simulation bool, appOpts servertypes.AppOptions, baseAppOptions ...func(*baseapp.BaseApp), ) *Canto
NewCanto returns a reference to a new initialized Ethermint application.
func Setup ¶
func Setup( isCheckTx bool, feemarketGenesis *feemarkettypes.GenesisState, ) *Canto
Setup initializes a new canto. A Nop logger is set in canto.
func SetupWithGenesisAccounts ¶
func SetupWithGenesisAccounts(genAccs []authtypes.GenesisAccount, balances ...banktypes.Balance) *Canto
func (*Canto) AppCodec ¶
AppCodec returns Canto'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 (*Canto) AutoCliOpts ¶
func (app *Canto) AutoCliOpts() autocli.AppOptions
AutoCliOpts returns the autocli options for the app.
func (*Canto) BeginBlocker ¶
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 (*Canto) BlockedAddrs ¶
BlockedAddrs returns all the app's module account addresses that are not allowed to receive external tokens.
func (*Canto) Configurator ¶
func (app *Canto) Configurator() module.Configurator
func (*Canto) DefaultGenesis ¶
func (app *Canto) DefaultGenesis() map[string]json.RawMessage
DefaultGenesis returns a default genesis from the registered AppModuleBasic's.
func (*Canto) EndBlocker ¶
EndBlocker updates every end block
func (*Canto) ExportAppStateAndValidators ¶
func (app *Canto) ExportAppStateAndValidators( forZeroHeight bool, jailAllowedAddrs []string, modulesToExport []string, ) (servertypes.ExportedApp, error)
ExportAppStateAndValidators exports the state of the application for a genesis file.
func (*Canto) FinalizeBlock ¶
func (app *Canto) FinalizeBlock(req *abci.RequestFinalizeBlock) (*abci.ResponseFinalizeBlock, error)
func (*Canto) GetBaseApp ¶
GetBaseApp implements the TestingApp interface.
func (*Canto) GetCoinswapKeeper ¶
func (app *Canto) GetCoinswapKeeper() coinswapkeeper.Keeper
func (*Canto) GetErc20Keeper ¶
func (app *Canto) GetErc20Keeper() erc20keeper.Keeper
func (*Canto) GetIBCKeeper ¶
GetIBCKeeper implements the TestingApp interface.
func (*Canto) GetKey ¶
func (app *Canto) 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 (*Canto) GetMemKey ¶
func (app *Canto) GetMemKey(storeKey string) *storetypes.MemoryStoreKey
GetMemKey returns the MemStoreKey for the provided mem key.
NOTE: This is solely used for testing purposes.
func (*Canto) GetOnboardingKeeper ¶
func (app *Canto) GetOnboardingKeeper() *onboardingkeeper.Keeper
func (*Canto) GetScopedIBCKeeper ¶
func (app *Canto) GetScopedIBCKeeper() capabilitykeeper.ScopedKeeper
GetScopedIBCKeeper implements the TestingApp interface.
func (*Canto) GetStakingKeeper ¶
func (app *Canto) GetStakingKeeper() ibctestingtypes.StakingKeeper
GetStakingKeeper implements the TestingApp interface.
func (*Canto) GetStoreKeys ¶
func (app *Canto) GetStoreKeys() []storetypes.StoreKey
GetStoreKeys returns all the stored store keys.
func (*Canto) GetSubspace ¶
func (app *Canto) 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 (*Canto) GetTKey ¶
func (app *Canto) 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 (*Canto) GetTxConfig ¶
GetTxConfig implements the TestingApp interface.
func (*Canto) InitChainer ¶
func (app *Canto) InitChainer(ctx sdk.Context, req *abci.RequestInitChain) (*abci.ResponseInitChain, error)
InitChainer updates at chain initialization
func (*Canto) InterfaceRegistry ¶
func (app *Canto) InterfaceRegistry() types.InterfaceRegistry
InterfaceRegistry returns Canto's InterfaceRegistry
func (*Canto) LegacyAmino ¶
func (app *Canto) LegacyAmino() *codec.LegacyAmino
LegacyAmino returns Canto'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 (*Canto) LoadHeight ¶
LoadHeight loads state at a particular height
func (*Canto) ModuleAccountAddrs ¶
ModuleAccountAddrs returns all the app's module account addresses.
func (*Canto) PreBlocker ¶
func (app *Canto) PreBlocker(ctx sdk.Context, _ *abci.RequestFinalizeBlock) (*sdk.ResponsePreBlock, error)
PreBlocker updates every pre begin block
func (*Canto) RegisterAPIRoutes ¶
RegisterAPIRoutes registers all application module routes with the provided API server.
func (*Canto) RegisterNodeService ¶
func (*Canto) RegisterTendermintService ¶
func (*Canto) RegisterTxService ¶
func (*Canto) SimulationManager ¶
func (app *Canto) SimulationManager() *module.SimulationManager
SimulationManager implements the SimulationApp interface
type GeneratedType ¶
type GeneratedType struct { Pulsar proto.Message Gogo gogoproto.Message Opts rapidproto.GeneratorOptions }
func GenType ¶
func GenType(gogo gogoproto.Message, pulsar proto.Message, opts rapidproto.GeneratorOptions) GeneratedType
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 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
|
|