laconicd/x/bond/keys.go
prathamesh0 e511051f3e
Add commands to create and list bonds (#3)
* 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
2024-02-02 15:09:10 +05:30

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)
)