2022-07-20 22:57:56 +00:00
|
|
|
syntax = "proto3";
|
|
|
|
package kava.earn.v1beta1;
|
|
|
|
|
|
|
|
option go_package = "github.com/kava-labs/kava/x/earn/types";
|
|
|
|
|
2022-07-20 23:14:43 +00:00
|
|
|
import "kava/earn/v1beta1/vault.proto";
|
|
|
|
import "kava/earn/v1beta1/params.proto";
|
2022-07-20 22:57:56 +00:00
|
|
|
import "gogoproto/gogo.proto";
|
|
|
|
|
2022-07-28 16:39:57 +00:00
|
|
|
// GenesisState defines the earn module's genesis state.
|
2022-07-20 22:57:56 +00:00
|
|
|
message GenesisState {
|
|
|
|
// params defines all the paramaters related to earn
|
|
|
|
Params params = 1 [(gogoproto.nullable) = false];
|
2022-07-20 23:14:43 +00:00
|
|
|
// vault_records defines the available vaults
|
|
|
|
repeated VaultRecord vault_records = 2 [(gogoproto.castrepeated) = "VaultRecords", (gogoproto.nullable) = false];
|
|
|
|
// share_records defines the owned shares of each vault
|
|
|
|
repeated VaultShareRecord vault_share_records = 3
|
|
|
|
[(gogoproto.castrepeated) = "VaultShareRecords", (gogoproto.nullable) = false];
|
2022-07-20 22:57:56 +00:00
|
|
|
}
|