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

     1  package types
     2  
     3  // staking module event types
     4  const (
     5  	EventTypeCompleteUnbonding         = "complete_unbonding"
     6  	EventTypeCompleteRedelegation      = "complete_redelegation"
     7  	EventTypeCreateValidator           = "create_validator"
     8  	EventTypeEditValidator             = "edit_validator"
     9  	EventTypeDelegate                  = "delegate"
    10  	EventTypeUnbond                    = "unbond"
    11  	EventTypeCancelUnbondingDelegation = "cancel_unbonding_delegation"
    12  	EventTypeRedelegate                = "redelegate"
    13  
    14  	AttributeKeyValidator         = "validator"
    15  	AttributeKeyCommissionRate    = "commission_rate"
    16  	AttributeKeyMinSelfDelegation = "min_self_delegation"
    17  	AttributeKeySrcValidator      = "source_validator"
    18  	AttributeKeyDstValidator      = "destination_validator"
    19  	AttributeKeyDelegator         = "delegator"
    20  	AttributeKeyCreationHeight    = "creation_height"
    21  	AttributeKeyCompletionTime    = "completion_time"
    22  	AttributeKeyNewShares         = "new_shares"
    23  )