github.com/fibonacci-chain/fbc@v0.0.0-20231124064014-c7636198c1e9/x/slashing/internal/types/events.go (about)

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