ea18cae9aa
* update swagger * update * clean
55 lines
1.9 KiB
Protocol Buffer
55 lines
1.9 KiB
Protocol Buffer
syntax = "proto3";
|
|
package cosmos.feegrant.v1beta1;
|
|
|
|
import "cosmos/feegrant/v1beta1/feegrant.proto";
|
|
import "cosmos/base/query/v1beta1/pagination.proto";
|
|
import "google/api/annotations.proto";
|
|
|
|
option go_package = "github.com/cosmos/cosmos-sdk/x/feegrant";
|
|
|
|
// Query defines the gRPC querier service.
|
|
service Query {
|
|
|
|
// Allowance returns fee granted to the grantee by the granter.
|
|
rpc Allowance(QueryAllowanceRequest) returns (QueryAllowanceResponse) {
|
|
option (google.api.http).get = "/cosmos/feegrant/v1beta1/allowance/{granter}/{grantee}";
|
|
}
|
|
|
|
// Allowances returns all the grants for address.
|
|
rpc Allowances(QueryAllowancesRequest) returns (QueryAllowancesResponse) {
|
|
option (google.api.http).get = "/cosmos/feegrant/v1beta1/allowances/{grantee}";
|
|
}
|
|
}
|
|
|
|
// QueryAllowanceRequest is the request type for the Query/Allowance RPC method.
|
|
message QueryAllowanceRequest {
|
|
// granter is the address of the user granting an allowance of their funds.
|
|
string granter = 1;
|
|
|
|
// grantee is the address of the user being granted an allowance of another user's funds.
|
|
string grantee = 2;
|
|
}
|
|
|
|
// QueryAllowanceResponse is the response type for the Query/Allowance RPC method.
|
|
message QueryAllowanceResponse {
|
|
// allowance is a allowance granted for grantee by granter.
|
|
cosmos.feegrant.v1beta1.Grant allowance = 1;
|
|
}
|
|
|
|
// QueryAllowancesRequest is the request type for the Query/Allowances RPC method.
|
|
message QueryAllowancesRequest {
|
|
string grantee = 1;
|
|
|
|
// pagination defines an pagination for the request.
|
|
cosmos.base.query.v1beta1.PageRequest pagination = 2;
|
|
}
|
|
|
|
// QueryAllowancesResponse is the response type for the Query/Allowances RPC method.
|
|
message QueryAllowancesResponse {
|
|
// allowances are allowance's granted for grantee by granter.
|
|
repeated cosmos.feegrant.v1beta1.Grant allowances = 1;
|
|
|
|
// pagination defines an pagination for the response.
|
|
cosmos.base.query.v1beta1.PageResponse pagination = 2;
|
|
}
|