Prathamesh Musale
a53e2178d2
Part of https://www.notion.so/Create-laconic-registry-SDK-d3a636d4aba44f7cbba3bd99b7146811 Co-authored-by: neeraj <neeraj.rtly@gmail.com> Reviewed-on: deep-stack/registry-sdk#5 Co-authored-by: Prathamesh Musale <prathamesh@noreply.git.vdb.to> Co-committed-by: Prathamesh Musale <prathamesh@noreply.git.vdb.to>
33 lines
843 B
Protocol Buffer
33 lines
843 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package cerc.registry.v1;
|
|
|
|
import "gogoproto/gogo.proto";
|
|
import "cerc/registry/v1/registry.proto";
|
|
|
|
option go_package = "git.vdb.to/cerc-io/laconic2d/x/registry";
|
|
|
|
// GenesisState defines the registry module's genesis state.
|
|
message GenesisState {
|
|
// params defines all the params of registry module.
|
|
Params params = 1 [ (gogoproto.nullable) = false ];
|
|
|
|
// records
|
|
repeated Record records = 2 [
|
|
(gogoproto.nullable) = false,
|
|
(gogoproto.moretags) = "json:\"records\" yaml:\"records\""
|
|
];
|
|
|
|
// authorities
|
|
repeated AuthorityEntry authorities = 3 [
|
|
(gogoproto.nullable) = false,
|
|
(gogoproto.moretags) = "json:\"authorities\" yaml:\"authorities\""
|
|
];
|
|
|
|
// names
|
|
repeated NameEntry names = 4 [
|
|
(gogoproto.nullable) = false,
|
|
(gogoproto.moretags) = "json:\"names\" yaml:\"names\""
|
|
];
|
|
}
|