mirror of
https://github.com/0glabs/0g-chain.git
synced 2024-11-10 10:05:18 +00:00
16 lines
491 B
Protocol Buffer
16 lines
491 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
package kava.savings.v1beta1;
|
||
|
|
||
|
import "kava/savings/v1beta1/store.proto";
|
||
|
import "gogoproto/gogo.proto";
|
||
|
|
||
|
option go_package = "github.com/kava-labs/kava/x/savings/types";
|
||
|
option (gogoproto.equal_all) = true;
|
||
|
option (gogoproto.verbose_equal_all) = true;
|
||
|
|
||
|
// GenesisState defines the savings module's genesis state.
|
||
|
message GenesisState {
|
||
|
// params defines all the paramaters of the module.
|
||
|
Params params = 1 [(gogoproto.nullable) = false];
|
||
|
}
|