mirror of
https://github.com/0glabs/0g-chain.git
synced 2024-12-27 16:55:21 +00:00
82e2f26e14
* Add query methods * Add TotalDeposited rpc query * All accounts and all denoms query wip * Add query deposits * Remove IsDenomSupported strategy method This is not necessary and is already set in params allowed vaults * Add Vaults, TotalDeposited queries * Deposits query tests and fixes * proto lints * Add earn swagger docs * Add cli query cmds * Update init-new-chain.sh with usdx strategy and funds * Add denom url query path for vaults * Return a list of coins for each depositor instead of multiple deposit entries
45 lines
1.6 KiB
Protocol Buffer
45 lines
1.6 KiB
Protocol Buffer
syntax = "proto3";
|
|
package kava.earn.v1beta1;
|
|
|
|
import "cosmos_proto/cosmos.proto";
|
|
import "cosmos/base/v1beta1/coin.proto";
|
|
import "gogoproto/gogo.proto";
|
|
|
|
option go_package = "github.com/kava-labs/kava/x/earn/types";
|
|
|
|
// Msg defines the earn Msg service.
|
|
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];
|
|
}
|
|
|
|
// MsgDepositResponse defines the Msg/Deposit response type.
|
|
message MsgDepositResponse {}
|
|
|
|
// 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];
|
|
}
|
|
|
|
// MsgWithdrawResponse defines the Msg/Withdraw response type.
|
|
message MsgWithdrawResponse {} |