mirror of
https://github.com/0glabs/0g-chain.git
synced 2024-11-10 18:15:19 +00:00
19 lines
501 B
Protocol Buffer
19 lines
501 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
package kava.incentive.v1beta1;
|
||
|
|
||
|
import "cosmos_proto/cosmos.proto";
|
||
|
import "gogoproto/gogo.proto";
|
||
|
|
||
|
option go_package = "github.com/kava-labs/kava/x/incentive/types";
|
||
|
|
||
|
// Apy contains the calculated APY for a given collateral type at a specific
|
||
|
// instant in time.
|
||
|
message Apy {
|
||
|
string collateral_type = 1;
|
||
|
string apy = 2 [
|
||
|
(cosmos_proto.scalar) = "cosmos.Dec",
|
||
|
(gogoproto.customtype) = "github.com/cosmos/cosmos-sdk/types.Dec",
|
||
|
(gogoproto.nullable) = false
|
||
|
];
|
||
|
}
|