2024-02-01 04:48:40 +00:00
|
|
|
package bond
|
|
|
|
|
2024-02-02 09:39:10 +00:00
|
|
|
import "cosmossdk.io/collections"
|
|
|
|
|
2024-02-01 10:58:34 +00:00
|
|
|
const (
|
|
|
|
ModuleName = "bond"
|
2024-02-29 11:54:35 +00:00
|
|
|
|
|
|
|
// StoreKey defines the primary module store key
|
|
|
|
StoreKey = ModuleName
|
2024-02-01 10:58:34 +00:00
|
|
|
)
|
2024-02-02 09:39:10 +00:00
|
|
|
|
|
|
|
// Store prefixes
|
|
|
|
var (
|
2024-02-15 06:56:18 +00:00
|
|
|
ParamsPrefix = collections.NewPrefix(0)
|
2024-02-08 13:23:20 +00:00
|
|
|
|
2024-02-15 06:56:18 +00:00
|
|
|
BondsPrefix = collections.NewPrefix(1)
|
2024-02-08 13:23:20 +00:00
|
|
|
BondOwnerIndexPrefix = collections.NewPrefix(2)
|
2024-02-02 09:39:10 +00:00
|
|
|
)
|