github.com/Finschia/finschia-sdk@v0.48.1/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  
    15  	AttributeValueDoubleSign       = "double_sign"
    16  	AttributeValueMissingSignature = "missing_signature"
    17  )