Documentation ¶
Overview ¶
nolint
Index ¶
- Constants
- Variables
- func ExportStateToJSON(app *IritaApp, path string) error
- func GetMaccPerms() map[string][]string
- func MakeCodec() *codec.Codec
- type GenesisState
- type IritaApp
- func (app *IritaApp) BeginBlocker(ctx sdk.Context, req abci.RequestBeginBlock) abci.ResponseBeginBlock
- func (app *IritaApp) Codec() *codec.Codec
- func (app *IritaApp) EndBlocker(ctx sdk.Context, req abci.RequestEndBlock) abci.ResponseEndBlock
- func (app *IritaApp) ExportAppStateAndValidators(forZeroHeight bool, jailWhiteList []string) (appState json.RawMessage, validators []tmtypes.GenesisValidator, err error)
- func (app *IritaApp) InitChainer(ctx sdk.Context, req abci.RequestInitChain) abci.ResponseInitChain
- func (app *IritaApp) LoadHeight(height int64) error
- func (app *IritaApp) ModuleAccountAddrs() map[string]bool
Constants ¶
const ( StakePerAccount = "stake_per_account" InitiallyBondedValidators = "initially_bonded_validators" OpWeightDeductFee = "op_weight_deduct_fee" OpWeightMsgSend = "op_weight_msg_send" OpWeightMsgMultiSend = "op_weight_msg_multisend" OpWeightMsgSetWithdrawAddress = "op_weight_msg_set_withdraw_address" OpWeightMsgWithdrawDelegationReward = "op_weight_msg_withdraw_delegation_reward" OpWeightMsgWithdrawValidatorCommission = "op_weight_msg_withdraw_validator_commission" OpWeightSubmitTextProposal = "op_weight_submit_text_proposal" OpWeightSubmitCommunitySpendProposal = "op_weight_submit_community_spend_proposal" OpWeightSubmitParamChangeProposal = "op_weight_submit_param_change_proposal" OpWeightMsgDeposit = "op_weight_msg_deposit" OpWeightMsgVote = "op_weight_msg_vote" OpWeightMsgCreateValidator = "op_weight_msg_create_validator" OpWeightMsgEditValidator = "op_weight_msg_edit_validator" OpWeightMsgDelegate = "op_weight_msg_delegate" OpWeightMsgUndelegate = "op_weight_msg_undelegate" OpWeightMsgBeginRedelegate = "op_weight_msg_begin_redelegate" OpWeightMsgUnjail = "op_weight_msg_unjail" )
Simulation parameter constants
Variables ¶
var ( // default home directories for iritacli DefaultCLIHome = os.ExpandEnv("$HOME/.iritacli") // default home directories for irita DefaultNodeHome = os.ExpandEnv("$HOME/.irita") // The module BasicManager is in charge of setting up basic, // non-dependant module elements, such as codec registration // and genesis verification. ModuleBasics = module.NewBasicManager( genutil.AppModuleBasic{}, auth.AppModuleBasic{}, bank.AppModuleBasic{}, staking.AppModuleBasic{}, gov.NewAppModuleBasic(paramsclient.ProposalHandler), params.AppModuleBasic{}, crisis.AppModuleBasic{}, supply.AppModuleBasic{}, guardian.AppModuleBasic{}, service.AppModuleBasic{}, nft.AppModuleBasic{}, record.AppModuleBasic{}, ) )
Functions ¶
func ExportStateToJSON ¶
ExportStateToJSON util function to export the app state to JSON
func GetMaccPerms ¶
GetMaccPerms returns a mapping of the application's module account permissions.
Types ¶
type GenesisState ¶
type GenesisState map[string]json.RawMessage
GenesisState defines a type alias for the Iris genesis application state.
func NewDefaultGenesisState ¶
func NewDefaultGenesisState() GenesisState
NewDefaultGenesisState generates the default state for the application.
type IritaApp ¶
IrisApp extended ABCI application
func NewIrisApp ¶
func NewIrisApp(logger log.Logger, db dbm.DB, traceStore io.Writer, loadLatest bool, invCheckPeriod uint, baseAppOptions ...func(*bam.BaseApp)) *IritaApp
NewIrisApp returns a reference to an initialized IrisApp.
func NewIrisAppUNSAFE ¶
func NewIrisAppUNSAFE(logger log.Logger, db dbm.DB, traceStore io.Writer, loadLatest bool, invCheckPeriod uint, baseAppOptions ...func(*baseapp.BaseApp), ) (gapp *IritaApp, keyMain, keyStaking *sdk.KVStoreKey, stakingKeeper staking.Keeper)
NewIrisAppUNSAFE is used for debugging purposes only.
NOTE: to not use this function with non-test code
func (*IritaApp) BeginBlocker ¶
func (app *IritaApp) BeginBlocker(ctx sdk.Context, req abci.RequestBeginBlock) abci.ResponseBeginBlock
application updates every begin block
func (*IritaApp) EndBlocker ¶
func (app *IritaApp) EndBlocker(ctx sdk.Context, req abci.RequestEndBlock) abci.ResponseEndBlock
application updates every end block
func (*IritaApp) ExportAppStateAndValidators ¶
func (app *IritaApp) ExportAppStateAndValidators(forZeroHeight bool, jailWhiteList []string, ) (appState json.RawMessage, validators []tmtypes.GenesisValidator, err error)
ExportAppStateAndValidators export the state of iris for a genesis file
func (*IritaApp) InitChainer ¶
func (app *IritaApp) InitChainer(ctx sdk.Context, req abci.RequestInitChain) abci.ResponseInitChain
application update at chain initialization
func (*IritaApp) LoadHeight ¶
load a particular height
func (*IritaApp) ModuleAccountAddrs ¶
ModuleAccountAddrs returns all the app's module account addresses.