Prathamesh Musale
a36063aba6
Reviewed-on: deep-stack/laconic2d#3 Co-authored-by: Prathamesh Musale <prathamesh.musale0@gmail.com> Co-committed-by: Prathamesh Musale <prathamesh.musale0@gmail.com>
16 lines
247 B
Go
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)
|
|
)
|