forked from cerc-io/registry-sdk
Prathamesh Musale
3a828b47ae
Part of [Sumsub KYC integration in onboarding app](https://www.notion.so/Sumsub-KYC-integration-in-onboarding-app-607b598c9c1d4d12adc71725e2ab5e7e) Follows cerc-io/laconicd#43 Co-authored-by: Nabarun <nabarun@deepstacksoft.com> Reviewed-on: cerc-io/registry-sdk#15 Co-authored-by: Prathamesh Musale <prathamesh.musale0@gmail.com> Co-committed-by: Prathamesh Musale <prathamesh.musale0@gmail.com>
35 lines
1.1 KiB
Protocol Buffer
35 lines
1.1 KiB
Protocol Buffer
syntax = "proto3";
|
|
|
|
package cerc.onboarding.v1;
|
|
|
|
import "gogoproto/gogo.proto";
|
|
import "cosmos/base/query/v1beta1/pagination.proto";
|
|
import "cerc/onboarding/v1/onboarding.proto";
|
|
import "google/api/annotations.proto";
|
|
|
|
option go_package = "git.vdb.to/cerc-io/laconicd/x/onboarding";
|
|
|
|
// Query defines the gRPC querier service for onboarding module
|
|
service Query {
|
|
// Participants queries Participants list
|
|
rpc Participants(QueryParticipantsRequest)
|
|
returns (QueryParticipantsResponse) {
|
|
option (google.api.http).get = "/cerc/onboarding/v1/participants";
|
|
}
|
|
}
|
|
|
|
// QueryParticipantsRequest queries participants
|
|
message QueryParticipantsRequest {
|
|
// pagination defines an optional pagination for the request.
|
|
cosmos.base.query.v1beta1.PageRequest pagination = 1;
|
|
}
|
|
|
|
// QueryParticipantsResponse is response type for get the participants
|
|
message QueryParticipantsResponse {
|
|
repeated Participant participants = 1
|
|
[ (gogoproto.moretags) = "json:\"participants\" yaml:\"participants\"" ];
|
|
|
|
// pagination defines the pagination in the response.
|
|
cosmos.base.query.v1beta1.PageResponse pagination = 2;
|
|
}
|