github.com/cosmos/cosmos-sdk@v0.50.10/x/slashing/types/events.go (about)

     1  package types
     2  
     3  // Slashing module event types
     4  const (
     5  	EventTypeSlash    = "slash"
     6  	EventTypeLiveness = "liveness"
     7  
     8  	AttributeKeyAddress      = "address"
     9  	AttributeKeyHeight       = "height"
    10  	AttributeKeyPower        = "power"
    11  	AttributeKeyReason       = "reason"
    12  	AttributeKeyJailed       = "jailed"
    13  	AttributeKeyMissedBlocks = "missed_blocks"
    14  	AttributeKeyBurnedCoins  = "burned_coins"
    15  
    16  	AttributeValueUnspecified      = "unspecified"
    17  	AttributeValueDoubleSign       = "double_sign"
    18  	AttributeValueMissingSignature = "missing_signature"
    19  )