cosmos-sdk/x/slashing/types/events.go

20 lines
505 B
Go

//noalias
package types
// Slashing module event types
const (
EventTypeSlash = "slash"
EventTypeLiveness = "liveness"
AttributeKeyAddress = "address"
AttributeKeyHeight = "height"
AttributeKeyPower = "power"
AttributeKeyReason = "reason"
AttributeKeyJailed = "jailed"
AttributeKeyMissedBlocks = "missed_blocks"
AttributeValueDoubleSign = "double_sign"
AttributeValueMissingSignature = "missing_signature"
AttributeValueCategory = ModuleName
)