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
18 lines
245 B
Go
18 lines
245 B
Go
package bond
|
|
|
|
import "cosmossdk.io/collections"
|
|
|
|
const (
|
|
ModuleName = "bond"
|
|
|
|
// StoreKey is the string store representation
|
|
StoreKey = ModuleName
|
|
|
|
// TODO: Add required keys
|
|
)
|
|
|
|
// Store prefixes
|
|
var (
|
|
BondsKey = collections.NewPrefix(0)
|
|
)
|