-
Notifications
You must be signed in to change notification settings - Fork 3.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
192ad58
commit 5a13e75
Showing
15 changed files
with
207 additions
and
39 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# Tags | ||
|
||
The bank module emits the following events/tags: | ||
|
||
## Handlers | ||
|
||
### MsgSend | ||
|
||
| Key | Value | | ||
|-----------|---------------------------| | ||
| sender | {senderAccountAddress} | | ||
| recipient | {recipientAccountAddress} | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# Tags | ||
|
||
The distribution module emits the following events/tags: | ||
|
||
## Handlers | ||
|
||
### MsgSetWithdrawAddress | ||
|
||
| Key | Value | | ||
|-----------|---------------------------| | ||
| delegator | {delegatorAccountAddress} | | ||
|
||
### MsgWithdrawDelegatorRewardsAll | ||
|
||
| Key | Value | | ||
|-----------|---------------------------| | ||
| delegator | {delegatorAccountAddress} | | ||
|
||
### MsgWithdrawDelegatorReward | ||
|
||
| Key | Value | | ||
|------------------|---------------------------| | ||
| delegator | {delegatorAccountAddress} | | ||
| source-validator | {srcOperatorAddress} | | ||
|
||
### MsgWithdrawValidatorRewardsAll | ||
|
||
| Key | Value | | ||
|------------------|----------------------| | ||
| source-validator | {srcOperatorAddress} | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
# Tags | ||
|
||
The governance module emits the following events/tags: | ||
|
||
## EndBlocker | ||
|
||
| Key | Value | | ||
|-----------------|------------------------------------------------------| | ||
| proposal-result | proposal-passed\|proposal-rejected\|proposal-dropped | | ||
|
||
## Handlers | ||
|
||
### MsgSubmitProposal | ||
|
||
| Key | Value | | ||
|-------------------------|--------------------------| | ||
| action | proposal-vote | | ||
| proposer | {proposerAccountAddress} | | ||
| proposal-id | {proposalID} | | ||
| voting-period-start [0] | {proposalID} | | ||
|
||
* [0] Tag only emitted if the voting period starts during the submission. | ||
|
||
### MsgVote | ||
|
||
| Key | Value | | ||
|-------------|-----------------------| | ||
| action | proposal-vote | | ||
| voter | {voterAccountAddress} | | ||
| proposal-id | {proposalID} | | ||
|
||
### MsgDeposit | ||
|
||
| Key | Value | | ||
|-------------|---------------------------| | ||
| action | proposal-vote | | ||
| depositor | {depositorAccountAddress} | | ||
| proposal-id | {proposalID} | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# Tags | ||
|
||
The slashing module emits the following events/tags: | ||
|
||
## Handlers | ||
|
||
### MsgUnjail | ||
|
||
| Key | Value | | ||
|-----------|----------------------------| | ||
| action | validator-unjailed | | ||
| validator | {validatorOperatorAddress} | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
# Tags | ||
|
||
The staking module emits the following events/tags: | ||
|
||
## EndBlocker | ||
|
||
| Key | Value | | ||
|-----------------------|-------------------------------------------| | ||
| action | complete-unbonding\|complete-redelegation | | ||
| delegator | {delegatorAccountAddress} | | ||
| source-validator | {srcOperatorAddress} | | ||
| destination-validator | {dstOperatorAddress} | | ||
|
||
## Handlers | ||
|
||
### MsgCreateValidator | ||
|
||
| Key | Value | | ||
|-----------------------|----------------------| | ||
| destination-validator | {dstOperatorAddress} | | ||
| moniker | {validatorMoniker} | | ||
| identity | {validatorIdentity} | | ||
|
||
### MsgEditValidator | ||
|
||
| Key | Value | | ||
|-----------------------|----------------------| | ||
| destination-validator | {dstOperatorAddress} | | ||
| moniker | {validatorMoniker} | | ||
| identity | {validatorIdentity} | | ||
|
||
### MsgDelegate | ||
|
||
| Key | Value | | ||
|-----------------------|-------------------------------------------| | ||
| delegator | {delegatorAccountAddress} | | ||
| destination-validator | {dstOperatorAddress} | | ||
|
||
### MsgBeginRedelegate | ||
|
||
| Key | Value | | ||
|-----------------------|-------------------------------------------| | ||
| delegator | {delegatorAccountAddress} | | ||
| source-validator | {srcOperatorAddress} | | ||
| destination-validator | {dstOperatorAddress} | | ||
| end-time [0] | {delegationFinishTime} | | ||
|
||
* [0] Time is formatted in the RFC3339 standard | ||
|
||
### MsgBeginUnbonding | ||
|
||
| Key | Value | | ||
|------------------|---------------------------| | ||
| delegator | {delegatorAccountAddress} | | ||
| source-validator | {srcOperatorAddress} | | ||
| end-time [0] | {delegationFinishTime} | | ||
|
||
* [0] Time is formatted in the RFC3339 standard |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
package tags | ||
|
||
import ( | ||
sdk "github.com/cosmos/cosmos-sdk/types" | ||
) | ||
|
||
// Slashing tags | ||
var ( | ||
ActionValidatorUnjailed = []byte("validator-unjailed") | ||
|
||
Action = sdk.TagAction | ||
Validator = "validator" | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.