mirror of
https://github.com/0glabs/0g-chain.git
synced 2024-11-15 04:25:27 +00:00
16 lines
386 B
Protocol Buffer
16 lines
386 B
Protocol Buffer
syntax = "proto3";
|
|
package kava.earn.v1beta1;
|
|
|
|
import "gogoproto/gogo.proto";
|
|
import "kava/earn/v1beta1/vault.proto";
|
|
|
|
option go_package = "github.com/0glabs/0g-chain/x/earn/types";
|
|
|
|
// Params defines the parameters of the earn module.
|
|
message Params {
|
|
repeated AllowedVault allowed_vaults = 1 [
|
|
(gogoproto.castrepeated) = "AllowedVaults",
|
|
(gogoproto.nullable) = false
|
|
];
|
|
}
|