laconicd/x/bond/keys.go
Roy Crihfield 4003a44d20 [wip] nitro bank, server
go mod update for nitro

[wip] nitro.Service

[wip] run protocgen

[wip] nitrobank account
2025-02-13 11:41:58 +08:00

25 lines
486 B
Go

package bond
import (
"cosmossdk.io/collections"
"github.com/cosmos/cosmos-sdk/types/address"
)
const (
ModuleName = "bond"
// StoreKey defines the primary module store key
StoreKey = ModuleName
)
// Store prefixes
var (
ParamsPrefix = collections.NewPrefix(0)
BondsPrefix = collections.NewPrefix(1)
BondOwnerIndexPrefix = collections.NewPrefix(2)
)
// ModuleAccountAddress defines the x/bond module address.
var ModuleAccountAddress = address.Module(ModuleName)