-
Notifications
You must be signed in to change notification settings - Fork 52
/
events.go
40 lines (38 loc) · 1.79 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
31
32
33
34
35
36
37
38
39
40
package types
const (
EventTypeCreatePool = "create_pool"
EventTypeUpdatePool = "update_pool"
EventTypePausePool = "pause_pool"
EventTypeResumePool = "resume_pool"
EventTypeDepositCollateral = "deposit_collateral"
EventTypeWithdrawCollateral = "withdraw_collateral"
EventTypePurchaseShield = "purchase_shield"
EventTypeStakeForShield = "stake_for_shield"
EventTypeUnstakeFromShield = "unstake_from_shield"
EventTypeWithdrawRewards = "withdraw_rewards"
EventTypeWithdrawForeignRewards = "withdraw_foreign_rewards"
EventTypeClearPayouts = "clear_payouts"
EventTypeCreateReimbursement = "create_reimbursement"
EventTypeWithdrawReimbursement = "withdraw_reimbursement"
EventTypeUpdateSponsor = "update_sponsor"
AttributeKeyShield = "shield"
AttributeKeyDeposit = "deposit"
AttributeKeySponsor = "sponsor"
AttributeKeySponsorAddress = "sponsor_address"
AttributeKeyPoolID = "pool_id"
AttributeKeyAdditionalTime = "additional_time"
AttributeKeyTimeOfCoverage = "time_of_coverage"
AttributeKeyBlocksOfCoverage = "blocks_of_coverage"
AttributeKeyCollateral = "collateral"
AttributeKeyDenom = "denom"
AttributeKeyToAddr = "to_address"
AttributeKeyAccountAddress = "account_address"
AttributeKeyAmount = "amount"
AttributeKeyPurchaseID = "purchase_id"
AttributeKeyCompensationAmount = "compensation_amount"
AttributeKeyBeneficiary = "beneficiary"
AttributeKeyPurchaseDescription = "purchase_description"
AttributeKeyServiceFees = "service_fees"
AttributeKeyProtectionEndTime = "protection_end_time"
AttributeValueCategory = ModuleName
)