2024-07-01 06:05:28 +00:00
|
|
|
package onboarding
|
|
|
|
|
|
|
|
import "cosmossdk.io/collections"
|
|
|
|
|
2024-07-03 11:38:48 +00:00
|
|
|
const (
|
|
|
|
ModuleName = "onboarding"
|
|
|
|
|
|
|
|
// StoreKey defines the primary module store key
|
|
|
|
StoreKey = ModuleName
|
|
|
|
)
|
2024-07-01 06:05:28 +00:00
|
|
|
|
|
|
|
var (
|
2024-07-03 11:38:48 +00:00
|
|
|
ParamsPrefix = collections.NewPrefix(0)
|
|
|
|
|
|
|
|
ParticipantsPrefix = collections.NewPrefix(1)
|
2024-07-01 06:05:28 +00:00
|
|
|
)
|