Documentation ¶
Overview ¶
nolint autogenerated code using github.com/rigelrozanski/multitool aliases generated for the following subdirectories: ALIASGEN: github.com/terra-project/core/x/slashing/internal/types/
nolint
Index ¶
- Constants
- Variables
- type AppModule
- func (am AppModule) BeginBlock(ctx sdk.Context, rbb abci.RequestBeginBlock)
- func (am AppModule) EndBlock(ctx sdk.Context, rbb abci.RequestEndBlock) []abci.ValidatorUpdate
- func (am AppModule) ExportGenesis(ctx sdk.Context) json.RawMessage
- func (am AppModule) InitGenesis(ctx sdk.Context, data json.RawMessage) []abci.ValidatorUpdate
- func (am AppModule) Name() string
- func (am AppModule) NewHandler() sdk.Handler
- func (am AppModule) NewQuerierHandler() sdk.Querier
- func (am AppModule) QuerierRoute() string
- func (am AppModule) RegisterInvariants(ir sdk.InvariantRegistry)
- func (am AppModule) Route() string
- type AppModuleBasic
- func (AppModuleBasic) DefaultGenesis() json.RawMessage
- func (AppModuleBasic) GetQueryCmd(cdc *codec.Codec) *cobra.Command
- func (AppModuleBasic) GetTxCmd(cdc *codec.Codec) *cobra.Command
- func (AppModuleBasic) Name() string
- func (AppModuleBasic) RegisterCodec(cdc *codec.Codec)
- func (AppModuleBasic) RegisterRESTRoutes(cliCtx context.CLIContext, route *mux.Router)
- func (AppModuleBasic) ValidateGenesis(bz json.RawMessage) error
- type CodeType
- type CosmosAppModule
- type CosmosAppModuleBasic
- type GenesisState
- type Keeper
- type MissedBlock
- type MsgUnjail
- type Params
- type QuerySigningInfoParams
- type QuerySigningInfosParams
- type ValidatorSigningInfo
Constants ¶
const ( DefaultCodespace = slashing.DefaultCodespace CodeInvalidValidator = slashing.CodeInvalidValidator CodeValidatorJailed = slashing.CodeValidatorJailed CodeValidatorNotJailed = slashing.CodeValidatorNotJailed CodeMissingSelfDelegation = slashing.CodeMissingSelfDelegation CodeSelfDelegationTooLow = slashing.CodeSelfDelegationTooLow CodeMissingSigningInfo = slashing.CodeMissingSigningInfo ModuleName = slashing.ModuleName StoreKey = slashing.StoreKey RouterKey = slashing.RouterKey QuerierRoute = slashing.QuerierRoute QueryParameters = slashing.QueryParameters QuerySigningInfo = slashing.QuerySigningInfo QuerySigningInfos = slashing.QuerySigningInfos DefaultParamspace = slashing.DefaultParamspace DefaultMaxEvidenceAge = slashing.DefaultMaxEvidenceAge DefaultSignedBlocksWindow = slashing.DefaultSignedBlocksWindow DefaultDowntimeJailDuration = slashing.DefaultDowntimeJailDuration )
Variables ¶
var ( // functions aliases RegisterCodec = types.RegisterCodec // variable aliases ModuleCdc = types.ModuleCdc )
var ( // functions aliases ErrNoValidatorForAddress = slashing.ErrNoValidatorForAddress ErrBadValidatorAddr = slashing.ErrBadValidatorAddr ErrValidatorJailed = slashing.ErrValidatorJailed ErrValidatorNotJailed = slashing.ErrValidatorNotJailed ErrMissingSelfDelegation = slashing.ErrMissingSelfDelegation ErrSelfDelegationTooLowToUnjail = slashing.ErrSelfDelegationTooLowToUnjail ErrNoSigningInfoFound = slashing.ErrNoSigningInfoFound NewGenesisState = slashing.NewGenesisState DefaultGenesisState = slashing.DefaultGenesisState ValidateGenesis = slashing.ValidateGenesis GetValidatorSigningInfoKey = slashing.GetValidatorSigningInfoKey GetValidatorSigningInfoAddress = slashing.GetValidatorSigningInfoAddress GetValidatorMissedBlockBitArrayPrefixKey = slashing.GetValidatorMissedBlockBitArrayPrefixKey GetValidatorMissedBlockBitArrayKey = slashing.GetValidatorMissedBlockBitArrayKey GetAddrPubkeyRelationKey = slashing.GetAddrPubkeyRelationKey NewMsgUnjail = slashing.NewMsgUnjail ParamKeyTable = slashing.ParamKeyTable NewParams = slashing.NewParams DefaultParams = slashing.DefaultParams NewQuerySigningInfoParams = slashing.NewQuerySigningInfoParams NewQuerySigningInfosParams = slashing.NewQuerySigningInfosParams NewValidatorSigningInfo = slashing.NewValidatorSigningInfo NewCosmosAppModule = slashing.NewAppModule NewKeeper = slashing.NewKeeper // variable aliases CosmosModuleCdc = slashing.ModuleCdc ValidatorSigningInfoKey = slashing.ValidatorSigningInfoKey ValidatorMissedBlockBitArrayKey = slashing.ValidatorMissedBlockBitArrayKey AddrPubkeyRelationKey = slashing.AddrPubkeyRelationKey DoubleSignJailEndTime = slashing.DoubleSignJailEndTime DefaultMinSignedPerWindow = slashing.DefaultMinSignedPerWindow DefaultSlashFractionDoubleSign = slashing.DefaultSlashFractionDoubleSign DefaultSlashFractionDowntime = slashing.DefaultSlashFractionDowntime KeyMaxEvidenceAge = slashing.KeyMaxEvidenceAge KeySignedBlocksWindow = slashing.KeySignedBlocksWindow KeyMinSignedPerWindow = slashing.KeyMinSignedPerWindow KeyDowntimeJailDuration = slashing.KeyDowntimeJailDuration KeySlashFractionDoubleSign = slashing.KeySlashFractionDoubleSign KeySlashFractionDowntime = slashing.KeySlashFractionDowntime )
Functions ¶
This section is empty.
Types ¶
type AppModule ¶ added in v0.3.0
type AppModule struct { AppModuleBasic // contains filtered or unexported fields }
AppModule implements an application module for the slashing module.
func NewAppModule ¶ added in v0.3.0
func NewAppModule(keeper Keeper, stakingKeeper types.StakingKeeper) AppModule
NewAppModule creates a new AppModule object
func (AppModule) BeginBlock ¶ added in v0.3.0
func (am AppModule) BeginBlock(ctx sdk.Context, rbb abci.RequestBeginBlock)
BeginBlock returns the begin blocker for the slashing module.
func (AppModule) EndBlock ¶ added in v0.3.0
func (am AppModule) EndBlock(ctx sdk.Context, rbb abci.RequestEndBlock) []abci.ValidatorUpdate
EndBlock returns the end blocker for the slashing module.
func (AppModule) ExportGenesis ¶ added in v0.3.0
func (am AppModule) ExportGenesis(ctx sdk.Context) json.RawMessage
ExportGenesis returns the exported genesis state as raw bytes for the slashing module.
func (AppModule) InitGenesis ¶ added in v0.3.0
func (am AppModule) InitGenesis(ctx sdk.Context, data json.RawMessage) []abci.ValidatorUpdate
InitGenesis performs genesis initialization for the slashing module.
func (AppModule) NewHandler ¶ added in v0.3.0
NewHandler returns an sdk.Handler for the slashing module.
func (AppModule) NewQuerierHandler ¶ added in v0.3.0
NewQuerierHandler returns the slashing module sdk.Querier.
func (AppModule) QuerierRoute ¶ added in v0.3.0
QuerierRoute returns the slashing module's querier route name.
func (AppModule) RegisterInvariants ¶ added in v0.3.0
func (am AppModule) RegisterInvariants(ir sdk.InvariantRegistry)
RegisterInvariants registers the slashing module invariants.
type AppModuleBasic ¶ added in v0.3.0
type AppModuleBasic struct{}
AppModuleBasic defines the basic application module used by the slashing module.
func (AppModuleBasic) DefaultGenesis ¶ added in v0.3.0
func (AppModuleBasic) DefaultGenesis() json.RawMessage
DefaultGenesis returns default genesis state as raw bytes for the slashing module.
func (AppModuleBasic) GetQueryCmd ¶ added in v0.3.0
func (AppModuleBasic) GetQueryCmd(cdc *codec.Codec) *cobra.Command
GetQueryCmd returns the root query command for the slashing module.
func (AppModuleBasic) GetTxCmd ¶ added in v0.3.0
func (AppModuleBasic) GetTxCmd(cdc *codec.Codec) *cobra.Command
GetTxCmd returns the root tx command for the slashing module.
func (AppModuleBasic) Name ¶ added in v0.3.0
func (AppModuleBasic) Name() string
Name returns the slashing module's name
func (AppModuleBasic) RegisterCodec ¶ added in v0.3.0
func (AppModuleBasic) RegisterCodec(cdc *codec.Codec)
RegisterCodec registers the slashing module's types for the given codec.
func (AppModuleBasic) RegisterRESTRoutes ¶ added in v0.3.0
func (AppModuleBasic) RegisterRESTRoutes(cliCtx context.CLIContext, route *mux.Router)
RegisterRESTRoutes registers the REST routes for the slashing module.
func (AppModuleBasic) ValidateGenesis ¶ added in v0.3.0
func (AppModuleBasic) ValidateGenesis(bz json.RawMessage) error
ValidateGenesis performs genesis state validation for the slashing module.
type CosmosAppModule ¶ added in v0.3.0
type CosmosAppModuleBasic ¶ added in v0.3.0
type CosmosAppModuleBasic = slashing.AppModuleBasic
type GenesisState ¶ added in v0.3.0
type GenesisState = slashing.GenesisState
type MissedBlock ¶ added in v0.3.0
type MissedBlock = slashing.MissedBlock
type QuerySigningInfoParams ¶ added in v0.3.0
type QuerySigningInfoParams = slashing.QuerySigningInfoParams
type QuerySigningInfosParams ¶ added in v0.3.0
type QuerySigningInfosParams = slashing.QuerySigningInfosParams
type ValidatorSigningInfo ¶ added in v0.3.0
type ValidatorSigningInfo = slashing.ValidatorSigningInfo