2024-07-01 06:05:28 +00:00
|
|
|
syntax = "proto3";
|
|
|
|
|
|
|
|
package cerc.onboarding.v1;
|
|
|
|
|
|
|
|
import "gogoproto/gogo.proto";
|
|
|
|
import "cerc/onboarding/v1/onboarding.proto";
|
|
|
|
|
|
|
|
option go_package = "git.vdb.to/cerc-io/laconicd/x/onboarding";
|
|
|
|
|
2024-07-03 11:38:48 +00:00
|
|
|
// GenesisState defines the onboarding module's genesis state.
|
2024-07-01 06:05:28 +00:00
|
|
|
message GenesisState {
|
|
|
|
// params defines all the parameters of the module.
|
|
|
|
Params params = 1 [ (gogoproto.nullable) = false ];
|
2024-07-03 11:38:48 +00:00
|
|
|
// participants defines all the participants
|
|
|
|
repeated Participant participants = 2 [ (gogoproto.nullable) = false ];
|
2024-07-01 06:05:28 +00:00
|
|
|
}
|