2024-09-26 18:01:49 -04:00
// Code generated by protoc-gen-go-grpc. DO NOT EDIT.
// versions:
2024-10-21 11:30:52 -04:00
// - protoc-gen-go-grpc v1.5.1
2024-09-26 18:01:49 -04:00
// - protoc (unknown)
2024-11-26 22:05:50 -05:00
// source: dwn/v1/tx.proto
2024-09-26 18:01:49 -04:00
2024-11-26 22:05:50 -05:00
package dwnv1
2024-09-26 18:01:49 -04:00
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.
2024-10-21 11:30:52 -04:00
// Requires gRPC-Go v1.64.0 or later.
const _ = grpc . SupportPackageIsVersion9
2024-09-26 18:01:49 -04:00
const (
2024-11-26 22:05:50 -05:00
Msg_UpdateParams_FullMethodName = "/dwn.v1.Msg/UpdateParams"
2024-12-24 10:38:17 -05:00
Msg_Initialize_FullMethodName = "/dwn.v1.Msg/Initialize"
2024-09-26 18:01:49 -04:00
)
// MsgClient is the client API for Msg 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.
2024-10-21 11:30:52 -04:00
//
// Msg defines the Msg service.
2024-09-26 18:01:49 -04:00
type MsgClient interface {
// UpdateParams defines a governance operation for updating the parameters.
//
// Since: cosmos-sdk 0.47
UpdateParams ( ctx context . Context , in * MsgUpdateParams , opts ... grpc . CallOption ) ( * MsgUpdateParamsResponse , error )
2024-12-24 00:59:42 -05:00
// Spawn spawns a new Vault
2024-12-24 10:38:17 -05:00
Initialize ( ctx context . Context , in * MsgInitialize , opts ... grpc . CallOption ) ( * MsgInitializeResponse , error )
2024-09-26 18:01:49 -04:00
}
type msgClient struct {
cc grpc . ClientConnInterface
}
func NewMsgClient ( cc grpc . ClientConnInterface ) MsgClient {
return & msgClient { cc }
}
func ( c * msgClient ) UpdateParams ( ctx context . Context , in * MsgUpdateParams , opts ... grpc . CallOption ) ( * MsgUpdateParamsResponse , error ) {
2024-10-21 11:30:52 -04:00
cOpts := append ( [ ] grpc . CallOption { grpc . StaticMethod ( ) } , opts ... )
2024-09-26 18:01:49 -04:00
out := new ( MsgUpdateParamsResponse )
2024-10-21 11:30:52 -04:00
err := c . cc . Invoke ( ctx , Msg_UpdateParams_FullMethodName , in , out , cOpts ... )
2024-09-26 18:01:49 -04:00
if err != nil {
return nil , err
}
return out , nil
}
2024-12-24 10:38:17 -05:00
func ( c * msgClient ) Initialize ( ctx context . Context , in * MsgInitialize , opts ... grpc . CallOption ) ( * MsgInitializeResponse , error ) {
2024-10-21 11:30:52 -04:00
cOpts := append ( [ ] grpc . CallOption { grpc . StaticMethod ( ) } , opts ... )
2024-12-24 10:38:17 -05:00
out := new ( MsgInitializeResponse )
err := c . cc . Invoke ( ctx , Msg_Initialize_FullMethodName , in , out , cOpts ... )
2024-09-27 20:58:05 -04:00
if err != nil {
return nil , err
}
return out , nil
}
2024-09-26 18:01:49 -04:00
// MsgServer is the server API for Msg service.
// All implementations must embed UnimplementedMsgServer
2024-10-21 11:30:52 -04:00
// for forward compatibility.
//
// Msg defines the Msg service.
2024-09-26 18:01:49 -04:00
type MsgServer interface {
// UpdateParams defines a governance operation for updating the parameters.
//
// Since: cosmos-sdk 0.47
UpdateParams ( context . Context , * MsgUpdateParams ) ( * MsgUpdateParamsResponse , error )
2024-12-24 00:59:42 -05:00
// Spawn spawns a new Vault
2024-12-24 10:38:17 -05:00
Initialize ( context . Context , * MsgInitialize ) ( * MsgInitializeResponse , error )
2024-09-26 18:01:49 -04:00
mustEmbedUnimplementedMsgServer ( )
}
2024-10-21 11:30:52 -04:00
// UnimplementedMsgServer must be embedded to have
// forward compatible implementations.
//
// NOTE: this should be embedded by value instead of pointer to avoid a nil
// pointer dereference when methods are called.
type UnimplementedMsgServer struct { }
2024-09-26 18:01:49 -04:00
func ( UnimplementedMsgServer ) UpdateParams ( context . Context , * MsgUpdateParams ) ( * MsgUpdateParamsResponse , error ) {
return nil , status . Errorf ( codes . Unimplemented , "method UpdateParams not implemented" )
}
2024-12-24 10:38:17 -05:00
func ( UnimplementedMsgServer ) Initialize ( context . Context , * MsgInitialize ) ( * MsgInitializeResponse , error ) {
return nil , status . Errorf ( codes . Unimplemented , "method Initialize not implemented" )
2024-09-27 20:58:05 -04:00
}
2024-09-26 18:01:49 -04:00
func ( UnimplementedMsgServer ) mustEmbedUnimplementedMsgServer ( ) { }
2024-10-21 11:30:52 -04:00
func ( UnimplementedMsgServer ) testEmbeddedByValue ( ) { }
2024-09-26 18:01:49 -04:00
// UnsafeMsgServer may be embedded to opt out of forward compatibility for this service.
// Use of this interface is not recommended, as added methods to MsgServer will
// result in compilation errors.
type UnsafeMsgServer interface {
mustEmbedUnimplementedMsgServer ( )
}
func RegisterMsgServer ( s grpc . ServiceRegistrar , srv MsgServer ) {
2024-10-21 11:30:52 -04:00
// If the following call pancis, it indicates UnimplementedMsgServer was
// embedded by pointer and is nil. This will cause panics if an
// unimplemented method is ever invoked, so we test this at initialization
// time to prevent it from happening at runtime later due to I/O.
if t , ok := srv . ( interface { testEmbeddedByValue ( ) } ) ; ok {
t . testEmbeddedByValue ( )
}
2024-09-26 18:01:49 -04:00
s . RegisterService ( & Msg_ServiceDesc , srv )
}
func _Msg_UpdateParams_Handler ( srv interface { } , ctx context . Context , dec func ( interface { } ) error , interceptor grpc . UnaryServerInterceptor ) ( interface { } , error ) {
in := new ( MsgUpdateParams )
if err := dec ( in ) ; err != nil {
return nil , err
}
if interceptor == nil {
return srv . ( MsgServer ) . UpdateParams ( ctx , in )
}
info := & grpc . UnaryServerInfo {
Server : srv ,
FullMethod : Msg_UpdateParams_FullMethodName ,
}
handler := func ( ctx context . Context , req interface { } ) ( interface { } , error ) {
return srv . ( MsgServer ) . UpdateParams ( ctx , req . ( * MsgUpdateParams ) )
}
return interceptor ( ctx , in , info , handler )
}
2024-12-24 10:38:17 -05:00
func _Msg_Initialize_Handler ( srv interface { } , ctx context . Context , dec func ( interface { } ) error , interceptor grpc . UnaryServerInterceptor ) ( interface { } , error ) {
in := new ( MsgInitialize )
2024-09-27 20:58:05 -04:00
if err := dec ( in ) ; err != nil {
return nil , err
}
if interceptor == nil {
2024-12-24 10:38:17 -05:00
return srv . ( MsgServer ) . Initialize ( ctx , in )
2024-09-27 20:58:05 -04:00
}
info := & grpc . UnaryServerInfo {
Server : srv ,
2024-12-24 10:38:17 -05:00
FullMethod : Msg_Initialize_FullMethodName ,
2024-09-27 20:58:05 -04:00
}
handler := func ( ctx context . Context , req interface { } ) ( interface { } , error ) {
2024-12-24 10:38:17 -05:00
return srv . ( MsgServer ) . Initialize ( ctx , req . ( * MsgInitialize ) )
2024-09-27 20:58:05 -04:00
}
return interceptor ( ctx , in , info , handler )
}
2024-09-26 18:01:49 -04:00
// Msg_ServiceDesc is the grpc.ServiceDesc for Msg service.
// It's only intended for direct use with grpc.RegisterService,
// and not to be introspected or modified (even as a copy)
var Msg_ServiceDesc = grpc . ServiceDesc {
2024-11-26 22:05:50 -05:00
ServiceName : "dwn.v1.Msg" ,
2024-09-26 18:01:49 -04:00
HandlerType : ( * MsgServer ) ( nil ) ,
Methods : [ ] grpc . MethodDesc {
{
MethodName : "UpdateParams" ,
Handler : _Msg_UpdateParams_Handler ,
} ,
2024-09-27 20:58:05 -04:00
{
2024-12-24 10:38:17 -05:00
MethodName : "Initialize" ,
Handler : _Msg_Initialize_Handler ,
2024-09-27 20:58:05 -04:00
} ,
2024-09-26 18:01:49 -04:00
} ,
Streams : [ ] grpc . StreamDesc { } ,
2024-11-26 22:05:50 -05:00
Metadata : "dwn/v1/tx.proto" ,
2024-09-26 18:01:49 -04:00
}