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

20 lines
538 B
Go

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