2022-12-09 21:24:35 +00:00
|
|
|
syntax = "proto3";
|
|
|
|
package kava.community.v1beta1;
|
|
|
|
|
|
|
|
import "cosmos/base/v1beta1/coin.proto";
|
|
|
|
import "gogoproto/gogo.proto";
|
|
|
|
import "google/api/annotations.proto";
|
|
|
|
|
|
|
|
option go_package = "github.com/kava-labs/kava/x/community/types";
|
|
|
|
|
|
|
|
// Query defines the gRPC querier service for x/community.
|
|
|
|
service Query {
|
|
|
|
// Balance queries the balance of all coins of x/community module.
|
|
|
|
rpc Balance(QueryBalanceRequest) returns (QueryBalanceResponse) {
|
|
|
|
option (google.api.http).get = "/kava/community/v1beta1/balance";
|
|
|
|
}
|
2023-04-17 19:54:13 +00:00
|
|
|
|
|
|
|
// TotalBalance queries the balance of all coins, including x/distribution,
|
|
|
|
// x/community, and supplied balances.
|
|
|
|
rpc TotalBalance(QueryTotalBalanceRequest) returns (QueryTotalBalanceResponse) {
|
|
|
|
option (google.api.http).get = "/kava/community/v1beta1/total_balance";
|
|
|
|
}
|
2022-12-09 21:24:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// QueryBalanceRequest defines the request type for querying x/community balance.
|
|
|
|
message QueryBalanceRequest {}
|
|
|
|
|
|
|
|
// QueryBalanceResponse defines the response type for querying x/community balance.
|
|
|
|
message QueryBalanceResponse {
|
|
|
|
repeated cosmos.base.v1beta1.Coin coins = 1 [
|
|
|
|
(gogoproto.nullable) = false,
|
|
|
|
(gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins"
|
|
|
|
];
|
|
|
|
}
|
2023-04-17 19:54:13 +00:00
|
|
|
|
|
|
|
// QueryTotalBalanceRequest defines the request type for querying total community pool balance.
|
|
|
|
message QueryTotalBalanceRequest {}
|
|
|
|
|
|
|
|
// QueryTotalBalanceResponse defines the response type for querying total
|
|
|
|
// community pool balance. This matches the x/distribution CommunityPool query response.
|
|
|
|
message QueryTotalBalanceResponse {
|
|
|
|
// pool defines community pool's coins.
|
|
|
|
repeated cosmos.base.v1beta1.DecCoin pool = 1 [
|
|
|
|
(gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.DecCoins",
|
|
|
|
(gogoproto.nullable) = false
|
|
|
|
];
|
|
|
|
}
|