-
Notifications
You must be signed in to change notification settings - Fork 3.6k
/
events.go
30 lines (28 loc) · 1.31 KB
/
events.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
package types
// staking module event types
const (
EventTypeCompleteUnbonding = "complete_unbonding"
EventTypeCompleteRedelegation = "complete_redelegation"
EventTypeCreateValidator = "create_validator"
EventTypeEditValidator = "edit_validator"
EventTypeDelegate = "delegate"
EventTypeUnbond = "unbond"
EventTypeCancelUnbondingDelegation = "cancel_unbonding_delegation"
EventTypeRedelegate = "redelegate"
EventTypeTokenizeShares = "tokenize_shares"
EventTypeRedeemShares = "redeem_shares"
EventTypeTransferTokenizeShareRecord = "transfer_tokenize_share_record"
EventTypeValidatorBondDelegation = "validator_bond_delegation"
AttributeKeyValidator = "validator"
AttributeKeyCommissionRate = "commission_rate"
AttributeKeySrcValidator = "source_validator"
AttributeKeyDstValidator = "destination_validator"
AttributeKeyDelegator = "delegator"
AttributeKeyCreationHeight = "creation_height"
AttributeKeyCompletionTime = "completion_time"
AttributeKeyNewShares = "new_shares"
AttributeKeyShareOwner = "share_owner"
AttributeKeyShareRecordID = "share_record_id"
AttributeKeyAmount = "amount"
AttributeKeyTokenizedShares = "tokenized_shares"
)