2024-07-04 05:23:26 +00:00
// Code generated by protoc-gen-go-grpc. DO NOT EDIT.
// versions:
// - protoc-gen-go-grpc v1.3.0
// - protoc (unknown)
// source: cerc/onboarding/v1/query.proto
package onboardingv1
import (
context "context"
grpc "google.golang.org/grpc"
codes "google.golang.org/grpc/codes"
status "google.golang.org/grpc/status"
)
// This is a compile-time assertion to ensure that this generated file
// is compatible with the grpc package it is being compiled against.
// Requires gRPC-Go v1.32.0 or later.
const _ = grpc . SupportPackageIsVersion7
const (
2024-07-29 10:28:30 +00:00
Query_Participants_FullMethodName = "/cerc.onboarding.v1.Query/Participants"
Query_GetParticipantByAddress_FullMethodName = "/cerc.onboarding.v1.Query/GetParticipantByAddress"
Query_GetParticipantByNitroAddress_FullMethodName = "/cerc.onboarding.v1.Query/GetParticipantByNitroAddress"
2024-07-04 05:23:26 +00:00
)
// QueryClient is the client API for Query service.
//
// For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream.
type QueryClient interface {
// Participants queries Participants list
Participants ( ctx context . Context , in * QueryParticipantsRequest , opts ... grpc . CallOption ) ( * QueryParticipantsResponse , error )
2024-07-29 10:28:30 +00:00
// GetParticipantByAddress queries a participant by cosmos (laconic) address
GetParticipantByAddress ( ctx context . Context , in * QueryGetParticipantByAddressRequest , opts ... grpc . CallOption ) ( * QueryGetParticipantByAddressResponse , error )
// GetParticipantByNitroAddress queries a participant by nitro address
GetParticipantByNitroAddress ( ctx context . Context , in * QueryGetParticipantByNitroAddressRequest , opts ... grpc . CallOption ) ( * QueryGetParticipantByNitroAddressResponse , error )
2024-07-04 05:23:26 +00:00
}
type queryClient struct {
cc grpc . ClientConnInterface
}
func NewQueryClient ( cc grpc . ClientConnInterface ) QueryClient {
return & queryClient { cc }
}
func ( c * queryClient ) Participants ( ctx context . Context , in * QueryParticipantsRequest , opts ... grpc . CallOption ) ( * QueryParticipantsResponse , error ) {
out := new ( QueryParticipantsResponse )
err := c . cc . Invoke ( ctx , Query_Participants_FullMethodName , in , out , opts ... )
if err != nil {
return nil , err
}
return out , nil
}
2024-07-29 10:28:30 +00:00
func ( c * queryClient ) GetParticipantByAddress ( ctx context . Context , in * QueryGetParticipantByAddressRequest , opts ... grpc . CallOption ) ( * QueryGetParticipantByAddressResponse , error ) {
out := new ( QueryGetParticipantByAddressResponse )
err := c . cc . Invoke ( ctx , Query_GetParticipantByAddress_FullMethodName , in , out , opts ... )
if err != nil {
return nil , err
}
return out , nil
}
func ( c * queryClient ) GetParticipantByNitroAddress ( ctx context . Context , in * QueryGetParticipantByNitroAddressRequest , opts ... grpc . CallOption ) ( * QueryGetParticipantByNitroAddressResponse , error ) {
out := new ( QueryGetParticipantByNitroAddressResponse )
err := c . cc . Invoke ( ctx , Query_GetParticipantByNitroAddress_FullMethodName , in , out , opts ... )
if err != nil {
return nil , err
}
return out , nil
}
2024-07-04 05:23:26 +00:00
// QueryServer is the server API for Query service.
// All implementations must embed UnimplementedQueryServer
// for forward compatibility
type QueryServer interface {
// Participants queries Participants list
Participants ( context . Context , * QueryParticipantsRequest ) ( * QueryParticipantsResponse , error )
2024-07-29 10:28:30 +00:00
// GetParticipantByAddress queries a participant by cosmos (laconic) address
GetParticipantByAddress ( context . Context , * QueryGetParticipantByAddressRequest ) ( * QueryGetParticipantByAddressResponse , error )
// GetParticipantByNitroAddress queries a participant by nitro address
GetParticipantByNitroAddress ( context . Context , * QueryGetParticipantByNitroAddressRequest ) ( * QueryGetParticipantByNitroAddressResponse , error )
2024-07-04 05:23:26 +00:00
mustEmbedUnimplementedQueryServer ( )
}
// UnimplementedQueryServer must be embedded to have forward compatible implementations.
type UnimplementedQueryServer struct {
}
func ( UnimplementedQueryServer ) Participants ( context . Context , * QueryParticipantsRequest ) ( * QueryParticipantsResponse , error ) {
return nil , status . Errorf ( codes . Unimplemented , "method Participants not implemented" )
}
2024-07-29 10:28:30 +00:00
func ( UnimplementedQueryServer ) GetParticipantByAddress ( context . Context , * QueryGetParticipantByAddressRequest ) ( * QueryGetParticipantByAddressResponse , error ) {
return nil , status . Errorf ( codes . Unimplemented , "method GetParticipantByAddress not implemented" )
}
func ( UnimplementedQueryServer ) GetParticipantByNitroAddress ( context . Context , * QueryGetParticipantByNitroAddressRequest ) ( * QueryGetParticipantByNitroAddressResponse , error ) {
return nil , status . Errorf ( codes . Unimplemented , "method GetParticipantByNitroAddress not implemented" )
}
2024-07-04 05:23:26 +00:00
func ( UnimplementedQueryServer ) mustEmbedUnimplementedQueryServer ( ) { }
// UnsafeQueryServer may be embedded to opt out of forward compatibility for this service.
// Use of this interface is not recommended, as added methods to QueryServer will
// result in compilation errors.
type UnsafeQueryServer interface {
mustEmbedUnimplementedQueryServer ( )
}
func RegisterQueryServer ( s grpc . ServiceRegistrar , srv QueryServer ) {
s . RegisterService ( & Query_ServiceDesc , srv )
}
func _Query_Participants_Handler ( srv interface { } , ctx context . Context , dec func ( interface { } ) error , interceptor grpc . UnaryServerInterceptor ) ( interface { } , error ) {
in := new ( QueryParticipantsRequest )
if err := dec ( in ) ; err != nil {
return nil , err
}
if interceptor == nil {
return srv . ( QueryServer ) . Participants ( ctx , in )
}
info := & grpc . UnaryServerInfo {
Server : srv ,
FullMethod : Query_Participants_FullMethodName ,
}
handler := func ( ctx context . Context , req interface { } ) ( interface { } , error ) {
return srv . ( QueryServer ) . Participants ( ctx , req . ( * QueryParticipantsRequest ) )
}
return interceptor ( ctx , in , info , handler )
}
2024-07-29 10:28:30 +00:00
func _Query_GetParticipantByAddress_Handler ( srv interface { } , ctx context . Context , dec func ( interface { } ) error , interceptor grpc . UnaryServerInterceptor ) ( interface { } , error ) {
in := new ( QueryGetParticipantByAddressRequest )
if err := dec ( in ) ; err != nil {
return nil , err
}
if interceptor == nil {
return srv . ( QueryServer ) . GetParticipantByAddress ( ctx , in )
}
info := & grpc . UnaryServerInfo {
Server : srv ,
FullMethod : Query_GetParticipantByAddress_FullMethodName ,
}
handler := func ( ctx context . Context , req interface { } ) ( interface { } , error ) {
return srv . ( QueryServer ) . GetParticipantByAddress ( ctx , req . ( * QueryGetParticipantByAddressRequest ) )
}
return interceptor ( ctx , in , info , handler )
}
func _Query_GetParticipantByNitroAddress_Handler ( srv interface { } , ctx context . Context , dec func ( interface { } ) error , interceptor grpc . UnaryServerInterceptor ) ( interface { } , error ) {
in := new ( QueryGetParticipantByNitroAddressRequest )
if err := dec ( in ) ; err != nil {
return nil , err
}
if interceptor == nil {
return srv . ( QueryServer ) . GetParticipantByNitroAddress ( ctx , in )
}
info := & grpc . UnaryServerInfo {
Server : srv ,
FullMethod : Query_GetParticipantByNitroAddress_FullMethodName ,
}
handler := func ( ctx context . Context , req interface { } ) ( interface { } , error ) {
return srv . ( QueryServer ) . GetParticipantByNitroAddress ( ctx , req . ( * QueryGetParticipantByNitroAddressRequest ) )
}
return interceptor ( ctx , in , info , handler )
}
2024-07-04 05:23:26 +00:00
// Query_ServiceDesc is the grpc.ServiceDesc for Query service.
// It's only intended for direct use with grpc.RegisterService,
// and not to be introspected or modified (even as a copy)
var Query_ServiceDesc = grpc . ServiceDesc {
ServiceName : "cerc.onboarding.v1.Query" ,
HandlerType : ( * QueryServer ) ( nil ) ,
Methods : [ ] grpc . MethodDesc {
{
MethodName : "Participants" ,
Handler : _Query_Participants_Handler ,
} ,
2024-07-29 10:28:30 +00:00
{
MethodName : "GetParticipantByAddress" ,
Handler : _Query_GetParticipantByAddress_Handler ,
} ,
{
MethodName : "GetParticipantByNitroAddress" ,
Handler : _Query_GetParticipantByNitroAddress_Handler ,
} ,
2024-07-04 05:23:26 +00:00
} ,
Streams : [ ] grpc . StreamDesc { } ,
Metadata : "cerc/onboarding/v1/query.proto" ,
}