17 lines
414 B
Protocol Buffer
17 lines
414 B
Protocol Buffer
syntax = "proto3";
|
|
package mukan.qpos.v1;
|
|
|
|
import "amino/amino.proto";
|
|
import "gogoproto/gogo.proto";
|
|
import "mukan/qpos/v1/params.proto";
|
|
|
|
option go_package = "mukan/x/qpos/types";
|
|
|
|
// GenesisState defines the qpos module's genesis state.
|
|
message GenesisState {
|
|
// params defines all the parameters of the module.
|
|
Params params = 1 [
|
|
(gogoproto.nullable) = false,
|
|
(amino.dont_omitempty) = true
|
|
];
|
|
}
|