laconicd/x/bond/keys.go
Prathamesh Musale a36063aba6 Additional auction module commands (#3)
Reviewed-on: deep-stack/laconic2d#3
Co-authored-by: Prathamesh Musale <prathamesh.musale0@gmail.com>
Co-committed-by: Prathamesh Musale <prathamesh.musale0@gmail.com>
2024-02-15 06:56:18 +00:00

16 lines
247 B
Go

package bond
import "cosmossdk.io/collections"
const (
ModuleName = "bond"
)
// Store prefixes
var (
ParamsPrefix = collections.NewPrefix(0)
BondsPrefix = collections.NewPrefix(1)
BondOwnerIndexPrefix = collections.NewPrefix(2)
)