mirror of
https://github.com/0glabs/0g-chain.git
synced 2024-11-15 04:25:27 +00:00
19 lines
499 B
Protocol Buffer
19 lines
499 B
Protocol Buffer
syntax = "proto3";
|
|
package kava.savings.v1beta1;
|
|
|
|
import "gogoproto/gogo.proto";
|
|
import "kava/savings/v1beta1/store.proto";
|
|
|
|
option go_package = "github.com/0glabs/0g-chain/x/savings/types";
|
|
|
|
// GenesisState defines the savings module's genesis state.
|
|
message GenesisState {
|
|
// params defines all the parameters of the module.
|
|
Params params = 1 [(gogoproto.nullable) = false];
|
|
|
|
repeated Deposit deposits = 2 [
|
|
(gogoproto.castrepeated) = "Deposits",
|
|
(gogoproto.nullable) = false
|
|
];
|
|
}
|