2021-04-17 10:00:07 +00:00
|
|
|
syntax = "proto3";
|
|
|
|
package cosmos.auth.v1beta1;
|
|
|
|
|
2021-08-23 13:15:55 +00:00
|
|
|
import "cosmos/base/query/v1beta1/pagination.proto";
|
2021-04-17 10:00:07 +00:00
|
|
|
import "gogoproto/gogo.proto";
|
|
|
|
import "google/protobuf/any.proto";
|
|
|
|
import "google/api/annotations.proto";
|
|
|
|
import "cosmos/auth/v1beta1/auth.proto";
|
|
|
|
import "cosmos_proto/cosmos.proto";
|
|
|
|
|
|
|
|
option go_package = "github.com/cosmos/cosmos-sdk/x/auth/types";
|
|
|
|
|
|
|
|
// Query defines the gRPC querier service.
|
|
|
|
service Query {
|
2021-08-23 13:15:55 +00:00
|
|
|
// Accounts returns all the existing accounts
|
|
|
|
rpc Accounts(QueryAccountsRequest) returns (QueryAccountsResponse) {
|
|
|
|
option (google.api.http).get = "/cosmos/auth/v1beta1/accounts";
|
|
|
|
}
|
|
|
|
|
2021-04-17 10:00:07 +00:00
|
|
|
// Account returns account details based on address.
|
|
|
|
rpc Account(QueryAccountRequest) returns (QueryAccountResponse) {
|
|
|
|
option (google.api.http).get = "/cosmos/auth/v1beta1/accounts/{address}";
|
|
|
|
}
|
|
|
|
|
|
|
|
// Params queries all parameters.
|
|
|
|
rpc Params(QueryParamsRequest) returns (QueryParamsResponse) {
|
|
|
|
option (google.api.http).get = "/cosmos/auth/v1beta1/params";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-08-23 13:15:55 +00:00
|
|
|
// QueryAccountsRequest is the request type for the Query/Accounts RPC method.
|
|
|
|
message QueryAccountsRequest {
|
|
|
|
// pagination defines an optional pagination for the request.
|
|
|
|
cosmos.base.query.v1beta1.PageRequest pagination = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
// QueryAccountsResponse is the response type for the Query/Accounts RPC method.
|
|
|
|
message QueryAccountsResponse {
|
|
|
|
// accounts are the existing accounts
|
|
|
|
repeated google.protobuf.Any accounts = 1 [(cosmos_proto.accepts_interface) = "AccountI"];
|
|
|
|
|
|
|
|
// pagination defines the pagination in the response.
|
|
|
|
cosmos.base.query.v1beta1.PageResponse pagination = 2;
|
|
|
|
}
|
|
|
|
|
2021-04-17 10:00:07 +00:00
|
|
|
// QueryAccountRequest is the request type for the Query/Account RPC method.
|
|
|
|
message QueryAccountRequest {
|
2021-04-18 15:54:18 +00:00
|
|
|
option (gogoproto.equal) = false;
|
2021-04-17 10:00:07 +00:00
|
|
|
option (gogoproto.goproto_getters) = false;
|
|
|
|
|
|
|
|
// address defines the address to query for.
|
|
|
|
string address = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
// QueryAccountResponse is the response type for the Query/Account RPC method.
|
|
|
|
message QueryAccountResponse {
|
|
|
|
// account defines the account of the corresponding address.
|
2021-04-18 15:54:18 +00:00
|
|
|
google.protobuf.Any account = 1 [(cosmos_proto.accepts_interface) = "AccountI"];
|
2021-04-17 10:00:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// QueryParamsRequest is the request type for the Query/Params RPC method.
|
|
|
|
message QueryParamsRequest {}
|
|
|
|
|
|
|
|
// QueryParamsResponse is the response type for the Query/Params RPC method.
|
|
|
|
message QueryParamsResponse {
|
|
|
|
// params defines the parameters of the module.
|
2021-04-18 15:54:18 +00:00
|
|
|
Params params = 1 [(gogoproto.nullable) = false];
|
2021-04-17 10:00:07 +00:00
|
|
|
}
|