2024-02-02 09:39:10 +00:00
|
|
|
package bond
|
|
|
|
|
|
|
|
// bond module event types
|
|
|
|
|
|
|
|
const (
|
2024-07-03 11:38:48 +00:00
|
|
|
EventTypeCreateBond = "create_bond"
|
2024-02-02 09:39:10 +00:00
|
|
|
EventTypeRefillBond = "refill_bond"
|
|
|
|
EventTypeCancelBond = "cancel_bond"
|
|
|
|
EventTypeWithdrawBond = "withdraw_bond"
|
|
|
|
|
|
|
|
AttributeKeySigner = "signer"
|
|
|
|
AttributeKeyAmount = "amount"
|
2024-02-08 13:23:20 +00:00
|
|
|
AttributeKeyBondId = "bond_id"
|
2024-02-02 09:39:10 +00:00
|
|
|
AttributeValueCategory = ModuleName
|
|
|
|
)
|