forked from cerc-io/laconicd
Prathamesh Musale
5e68c7d9b3
Reviewed-on: deep-stack/laconic2d#5 Co-authored-by: Prathamesh Musale <prathamesh.musale0@gmail.com> Co-committed-by: Prathamesh Musale <prathamesh.musale0@gmail.com>
24 lines
656 B
Go
24 lines
656 B
Go
package registry
|
|
|
|
import "cosmossdk.io/collections"
|
|
|
|
const (
|
|
// ModuleName is the name of the registry module
|
|
ModuleName = "registry"
|
|
|
|
// RecordRentModuleAccountName is the name of the module account that keeps track of record rents paid.
|
|
RecordRentModuleAccountName = "record_rent"
|
|
|
|
// AuthorityRentModuleAccountName is the name of the module account that keeps track of authority rents paid.
|
|
AuthorityRentModuleAccountName = "authority_rent"
|
|
)
|
|
|
|
// Store prefixes
|
|
var (
|
|
// ParamsKey is the prefix for params key
|
|
ParamsPrefix = collections.NewPrefix(0)
|
|
|
|
RecordsPrefix = collections.NewPrefix(1)
|
|
BondIdIndexPrefix = collections.NewPrefix(2)
|
|
)
|