e511051f3e
* Add message service with a create bond command * Add query proto file with bonds list query * Remove legacy amino coded registration * Add bond to auth module config * Use collections package for bond module state
16 lines
353 B
Go
16 lines
353 B
Go
package bond
|
|
|
|
// bond module event types
|
|
|
|
const (
|
|
EventTypeCreateBond = "crate_bond"
|
|
EventTypeRefillBond = "refill_bond"
|
|
EventTypeCancelBond = "cancel_bond"
|
|
EventTypeWithdrawBond = "withdraw_bond"
|
|
|
|
AttributeKeySigner = "signer"
|
|
AttributeKeyAmount = "amount"
|
|
AttributeKeyBondID = "bond_id"
|
|
AttributeValueCategory = ModuleName
|
|
)
|