github.com/Finschia/finschia-sdk@v0.48.1/x/staking/spec/07_events.md (about)

     1  <!--
     2  order: 6
     3  -->
     4  
     5  # Events
     6  
     7  The staking module emits the following events:
     8  
     9  ## EndBlocker
    10  
    11  | Type                  | Attribute Key         | Attribute Value           |
    12  |-----------------------|-----------------------|---------------------------|
    13  | complete_unbonding    | amount                | {totalUnbondingAmount}    |
    14  | complete_unbonding    | validator             | {validatorAddress}        |
    15  | complete_unbonding    | delegator             | {delegatorAddress}        |
    16  | complete_redelegation | amount                | {totalRedelegationAmount} |
    17  | complete_redelegation | delegator             | {delegatorAddress}        |
    18  | complete_redelegation | source_validator      | {srcValidatorAddress}     |
    19  | complete_redelegation | destination_validator | {dstValidatorAddress}     |
    20  
    21  ## Msg's
    22  
    23  ### MsgCreateValidator
    24  
    25  | Type             | Attribute Key | Attribute Value    |
    26  |------------------|---------------|--------------------|
    27  | create_validator | validator     | {validatorAddress} |
    28  | create_validator | amount        | {delegationAmount} |
    29  | message          | module        | staking            |
    30  | message          | sender        | {senderAddress}    |
    31  
    32  ### MsgEditValidator
    33  
    34  | Type           | Attribute Key       | Attribute Value     |
    35  |----------------|---------------------|---------------------|
    36  | edit_validator | commission_rate     | {commissionRate}    |
    37  | edit_validator | min_self_delegation | {minSelfDelegation} |
    38  | message        | module              | staking             |
    39  | message        | sender              | {senderAddress}     |
    40  
    41  ### MsgDelegate
    42  
    43  | Type     | Attribute Key | Attribute Value    |
    44  |----------|---------------|--------------------|
    45  | delegate | validator     | {validatorAddress} |
    46  | delegate | amount        | {delegationAmount} |
    47  | delegate | new_shares    | {newShares}        |
    48  | message  | module        | staking            |
    49  | message  | sender        | {senderAddress}    |
    50  
    51  ### MsgUndelegate
    52  
    53  | Type    | Attribute Key       | Attribute Value    |
    54  |---------|---------------------|--------------------|
    55  | unbond  | validator           | {validatorAddress} |
    56  | unbond  | amount              | {unbondAmount}     |
    57  | unbond  | completion_time [0] | {completionTime}   |
    58  | message | module              | staking            |
    59  | message | sender              | {senderAddress}    |
    60  
    61  - [0] Time is formatted in the RFC3339 standard
    62  
    63  ### MsgBeginRedelegate
    64  
    65  | Type       | Attribute Key         | Attribute Value       |
    66  |------------|-----------------------|-----------------------|
    67  | redelegate | source_validator      | {srcValidatorAddress} |
    68  | redelegate | destination_validator | {dstValidatorAddress} |
    69  | redelegate | amount                | {unbondAmount}        |
    70  | redelegate | completion_time [0]   | {completionTime}      |
    71  | message    | module                | staking               |
    72  | message    | sender                | {senderAddress}       |
    73  
    74  - [0] Time is formatted in the RFC3339 standard