2022-07-20 22:57:56 +00:00
|
|
|
syntax = "proto3";
|
|
|
|
package kava.earn.v1beta1;
|
|
|
|
|
2022-07-20 23:14:43 +00:00
|
|
|
import "cosmos_proto/cosmos.proto";
|
|
|
|
import "cosmos/base/v1beta1/coin.proto";
|
2022-07-28 16:50:59 +00:00
|
|
|
import "gogoproto/gogo.proto";
|
2022-09-12 16:43:59 +00:00
|
|
|
import "kava/earn/v1beta1/strategy.proto";
|
2022-09-12 16:23:26 +00:00
|
|
|
import "kava/earn/v1beta1/vault.proto";
|
2022-07-20 23:14:43 +00:00
|
|
|
|
2022-07-20 22:57:56 +00:00
|
|
|
option go_package = "github.com/kava-labs/kava/x/earn/types";
|
|
|
|
|
|
|
|
// Msg defines the earn Msg service.
|
2022-07-20 23:14:43 +00:00
|
|
|
service Msg {
|
|
|
|
// Deposit defines a method for depositing assets into a vault
|
|
|
|
rpc Deposit(MsgDeposit) returns (MsgDepositResponse);
|
|
|
|
// Withdraw defines a method for withdrawing assets into a vault
|
|
|
|
rpc Withdraw(MsgWithdraw) returns (MsgWithdrawResponse);
|
|
|
|
}
|
|
|
|
|
|
|
|
// MsgDeposit represents a message for depositing assedts into a vault
|
|
|
|
message MsgDeposit {
|
|
|
|
option (gogoproto.goproto_getters) = false;
|
|
|
|
|
|
|
|
// depositor represents the address to deposit funds from
|
|
|
|
string depositor = 1 [(cosmos_proto.scalar) = "cosmos.AddressString"];
|
|
|
|
// Amount represents the token to deposit. The vault corresponds to the denom
|
|
|
|
// of the amount coin.
|
|
|
|
cosmos.base.v1beta1.Coin amount = 2 [(gogoproto.nullable) = false];
|
2022-09-12 16:43:59 +00:00
|
|
|
|
|
|
|
// Strategy is the vault strategy to use.
|
|
|
|
StrategyType strategy = 3;
|
2022-07-20 23:14:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// MsgDepositResponse defines the Msg/Deposit response type.
|
2022-09-12 16:23:26 +00:00
|
|
|
message MsgDepositResponse {
|
|
|
|
VaultShare shares = 1 [(gogoproto.nullable) = false];
|
|
|
|
}
|
2022-07-20 23:14:43 +00:00
|
|
|
|
|
|
|
// MsgWithdraw represents a message for withdrawing liquidity from a vault
|
|
|
|
message MsgWithdraw {
|
|
|
|
option (gogoproto.goproto_getters) = false;
|
|
|
|
|
|
|
|
// from represents the address we are withdrawing for
|
|
|
|
string from = 1 [(cosmos_proto.scalar) = "cosmos.AddressString"];
|
|
|
|
|
|
|
|
// Amount represents the token to withdraw. The vault corresponds to the denom
|
|
|
|
// of the amount coin.
|
|
|
|
cosmos.base.v1beta1.Coin amount = 2 [(gogoproto.nullable) = false];
|
2022-09-12 16:43:59 +00:00
|
|
|
|
|
|
|
// Strategy is the vault strategy to use.
|
|
|
|
StrategyType strategy = 3;
|
2022-07-20 23:14:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// MsgWithdrawResponse defines the Msg/Withdraw response type.
|
2022-09-12 16:23:26 +00:00
|
|
|
message MsgWithdrawResponse {
|
|
|
|
VaultShare shares = 1 [(gogoproto.nullable) = false];
|
|
|
|
}
|