laconicd/x/onboarding/keys.go

17 lines
264 B
Go
Raw Normal View History

package onboarding
import "cosmossdk.io/collections"
const (
ModuleName = "onboarding"
// StoreKey defines the primary module store key
StoreKey = ModuleName
)
var (
ParamsPrefix = collections.NewPrefix(0)
ParticipantsPrefix = collections.NewPrefix(1)
)