Prathamesh Musale
d2339e2426
- Registry module - Update module state to track record / authority expiry queues - Handle expired records and authorities at the end of each block - Add a command to handle record renewal Reviewed-on: deep-stack/laconic2d#7 Co-authored-by: Prathamesh Musale <prathamesh.musale0@gmail.com> Co-committed-by: Prathamesh Musale <prathamesh.musale0@gmail.com>
34 lines
1.1 KiB
Go
34 lines
1.1 KiB
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)
|
|
RecordsByBondIdIndexPrefix = collections.NewPrefix(2)
|
|
|
|
AuthoritiesPrefix = collections.NewPrefix(3)
|
|
AuthoritiesByAuctionIdIndexPrefix = collections.NewPrefix(4)
|
|
AuthoritiesByBondIdIndexPrefix = collections.NewPrefix(5)
|
|
|
|
NameRecordsPrefix = collections.NewPrefix(6)
|
|
NameRecordsByCidIndexPrefix = collections.NewPrefix(7)
|
|
|
|
RecordExpiryQueuePrefix = collections.NewPrefix(8)
|
|
AuthorityExpiryQueuePrefix = collections.NewPrefix(9)
|
|
)
|