2019-03-12 22:34:45 +00:00
// Code generated by protoc-gen-grpc-gateway. DO NOT EDIT.
// source: client.proto
/ *
Package looprpc is a reverse proxy .
It translates gRPC into RESTful JSON APIs .
* /
package looprpc
import (
2019-11-15 12:57:03 +00:00
"context"
2019-03-12 22:34:45 +00:00
"io"
"net/http"
2021-07-29 11:32:53 +00:00
"github.com/grpc-ecosystem/grpc-gateway/v2/runtime"
"github.com/grpc-ecosystem/grpc-gateway/v2/utilities"
2019-03-12 22:34:45 +00:00
"google.golang.org/grpc"
"google.golang.org/grpc/codes"
"google.golang.org/grpc/grpclog"
2021-07-29 11:32:53 +00:00
"google.golang.org/grpc/metadata"
2019-03-12 22:34:45 +00:00
"google.golang.org/grpc/status"
2021-07-29 11:32:53 +00:00
"google.golang.org/protobuf/proto"
2019-03-12 22:34:45 +00:00
)
2020-06-15 09:29:43 +00:00
// Suppress "imported and not used" errors
2019-03-12 22:34:45 +00:00
var _ codes . Code
var _ io . Reader
var _ status . Status
var _ = runtime . String
var _ = utilities . NewDoubleArray
2021-07-29 11:32:53 +00:00
var _ = metadata . Join
2019-03-12 22:34:45 +00:00
func request_SwapClient_LoopOut_0 ( ctx context . Context , marshaler runtime . Marshaler , client SwapClientClient , req * http . Request , pathParams map [ string ] string ) ( proto . Message , runtime . ServerMetadata , error ) {
var protoReq LoopOutRequest
var metadata runtime . ServerMetadata
2019-11-15 12:57:03 +00:00
newReader , berr := utilities . IOReaderFactory ( req . Body )
if berr != nil {
return nil , metadata , status . Errorf ( codes . InvalidArgument , "%v" , berr )
}
if err := marshaler . NewDecoder ( newReader ( ) ) . Decode ( & protoReq ) ; err != nil && err != io . EOF {
2019-03-12 22:34:45 +00:00
return nil , metadata , status . Errorf ( codes . InvalidArgument , "%v" , err )
}
msg , err := client . LoopOut ( ctx , & protoReq , grpc . Header ( & metadata . HeaderMD ) , grpc . Trailer ( & metadata . TrailerMD ) )
return msg , metadata , err
}
2020-06-15 09:29:43 +00:00
func local_request_SwapClient_LoopOut_0 ( ctx context . Context , marshaler runtime . Marshaler , server SwapClientServer , req * http . Request , pathParams map [ string ] string ) ( proto . Message , runtime . ServerMetadata , error ) {
var protoReq LoopOutRequest
var metadata runtime . ServerMetadata
newReader , berr := utilities . IOReaderFactory ( req . Body )
if berr != nil {
return nil , metadata , status . Errorf ( codes . InvalidArgument , "%v" , berr )
}
if err := marshaler . NewDecoder ( newReader ( ) ) . Decode ( & protoReq ) ; err != nil && err != io . EOF {
return nil , metadata , status . Errorf ( codes . InvalidArgument , "%v" , err )
}
msg , err := server . LoopOut ( ctx , & protoReq )
return msg , metadata , err
}
2019-09-05 03:48:48 +00:00
func request_SwapClient_LoopIn_0 ( ctx context . Context , marshaler runtime . Marshaler , client SwapClientClient , req * http . Request , pathParams map [ string ] string ) ( proto . Message , runtime . ServerMetadata , error ) {
var protoReq LoopInRequest
var metadata runtime . ServerMetadata
2019-11-15 12:57:03 +00:00
newReader , berr := utilities . IOReaderFactory ( req . Body )
if berr != nil {
return nil , metadata , status . Errorf ( codes . InvalidArgument , "%v" , berr )
}
if err := marshaler . NewDecoder ( newReader ( ) ) . Decode ( & protoReq ) ; err != nil && err != io . EOF {
2019-09-05 03:48:48 +00:00
return nil , metadata , status . Errorf ( codes . InvalidArgument , "%v" , err )
}
msg , err := client . LoopIn ( ctx , & protoReq , grpc . Header ( & metadata . HeaderMD ) , grpc . Trailer ( & metadata . TrailerMD ) )
return msg , metadata , err
}
2020-06-15 09:29:43 +00:00
func local_request_SwapClient_LoopIn_0 ( ctx context . Context , marshaler runtime . Marshaler , server SwapClientServer , req * http . Request , pathParams map [ string ] string ) ( proto . Message , runtime . ServerMetadata , error ) {
var protoReq LoopInRequest
var metadata runtime . ServerMetadata
newReader , berr := utilities . IOReaderFactory ( req . Body )
if berr != nil {
return nil , metadata , status . Errorf ( codes . InvalidArgument , "%v" , berr )
}
if err := marshaler . NewDecoder ( newReader ( ) ) . Decode ( & protoReq ) ; err != nil && err != io . EOF {
return nil , metadata , status . Errorf ( codes . InvalidArgument , "%v" , err )
}
msg , err := server . LoopIn ( ctx , & protoReq )
return msg , metadata , err
}
2023-12-23 16:31:34 +00:00
var (
filter_SwapClient_ListSwaps_0 = & utilities . DoubleArray { Encoding : map [ string ] int { } , Base : [ ] int ( nil ) , Check : [ ] int ( nil ) }
)
2020-01-31 12:57:22 +00:00
func request_SwapClient_ListSwaps_0 ( ctx context . Context , marshaler runtime . Marshaler , client SwapClientClient , req * http . Request , pathParams map [ string ] string ) ( proto . Message , runtime . ServerMetadata , error ) {
var protoReq ListSwapsRequest
var metadata runtime . ServerMetadata
2023-12-23 16:31:34 +00:00
if err := req . ParseForm ( ) ; err != nil {
return nil , metadata , status . Errorf ( codes . InvalidArgument , "%v" , err )
}
if err := runtime . PopulateQueryParameters ( & protoReq , req . Form , filter_SwapClient_ListSwaps_0 ) ; err != nil {
return nil , metadata , status . Errorf ( codes . InvalidArgument , "%v" , err )
}
2020-01-31 12:57:22 +00:00
msg , err := client . ListSwaps ( ctx , & protoReq , grpc . Header ( & metadata . HeaderMD ) , grpc . Trailer ( & metadata . TrailerMD ) )
return msg , metadata , err
}
2020-06-15 09:29:43 +00:00
func local_request_SwapClient_ListSwaps_0 ( ctx context . Context , marshaler runtime . Marshaler , server SwapClientServer , req * http . Request , pathParams map [ string ] string ) ( proto . Message , runtime . ServerMetadata , error ) {
var protoReq ListSwapsRequest
var metadata runtime . ServerMetadata
2023-12-23 16:31:34 +00:00
if err := req . ParseForm ( ) ; err != nil {
return nil , metadata , status . Errorf ( codes . InvalidArgument , "%v" , err )
}
if err := runtime . PopulateQueryParameters ( & protoReq , req . Form , filter_SwapClient_ListSwaps_0 ) ; err != nil {
return nil , metadata , status . Errorf ( codes . InvalidArgument , "%v" , err )
}
2020-06-15 09:29:43 +00:00
msg , err := server . ListSwaps ( ctx , & protoReq )
return msg , metadata , err
}
2020-01-31 12:57:22 +00:00
func request_SwapClient_SwapInfo_0 ( ctx context . Context , marshaler runtime . Marshaler , client SwapClientClient , req * http . Request , pathParams map [ string ] string ) ( proto . Message , runtime . ServerMetadata , error ) {
var protoReq SwapInfoRequest
var metadata runtime . ServerMetadata
var (
val string
ok bool
err error
_ = err
)
val , ok = pathParams [ "id" ]
if ! ok {
return nil , metadata , status . Errorf ( codes . InvalidArgument , "missing parameter %s" , "id" )
}
protoReq . Id , err = runtime . Bytes ( val )
if err != nil {
return nil , metadata , status . Errorf ( codes . InvalidArgument , "type mismatch, parameter: %s, error: %v" , "id" , err )
}
msg , err := client . SwapInfo ( ctx , & protoReq , grpc . Header ( & metadata . HeaderMD ) , grpc . Trailer ( & metadata . TrailerMD ) )
return msg , metadata , err
}
2020-06-15 09:29:43 +00:00
func local_request_SwapClient_SwapInfo_0 ( ctx context . Context , marshaler runtime . Marshaler , server SwapClientServer , req * http . Request , pathParams map [ string ] string ) ( proto . Message , runtime . ServerMetadata , error ) {
var protoReq SwapInfoRequest
var metadata runtime . ServerMetadata
var (
val string
ok bool
err error
_ = err
)
val , ok = pathParams [ "id" ]
if ! ok {
return nil , metadata , status . Errorf ( codes . InvalidArgument , "missing parameter %s" , "id" )
}
protoReq . Id , err = runtime . Bytes ( val )
if err != nil {
return nil , metadata , status . Errorf ( codes . InvalidArgument , "type mismatch, parameter: %s, error: %v" , "id" , err )
}
msg , err := server . SwapInfo ( ctx , & protoReq )
return msg , metadata , err
}
2019-03-12 22:34:45 +00:00
func request_SwapClient_LoopOutTerms_0 ( ctx context . Context , marshaler runtime . Marshaler , client SwapClientClient , req * http . Request , pathParams map [ string ] string ) ( proto . Message , runtime . ServerMetadata , error ) {
var protoReq TermsRequest
var metadata runtime . ServerMetadata
msg , err := client . LoopOutTerms ( ctx , & protoReq , grpc . Header ( & metadata . HeaderMD ) , grpc . Trailer ( & metadata . TrailerMD ) )
return msg , metadata , err
}
2020-06-15 09:29:43 +00:00
func local_request_SwapClient_LoopOutTerms_0 ( ctx context . Context , marshaler runtime . Marshaler , server SwapClientServer , req * http . Request , pathParams map [ string ] string ) ( proto . Message , runtime . ServerMetadata , error ) {
var protoReq TermsRequest
var metadata runtime . ServerMetadata
msg , err := server . LoopOutTerms ( ctx , & protoReq )
return msg , metadata , err
}
2019-06-25 18:41:45 +00:00
var (
filter_SwapClient_LoopOutQuote_0 = & utilities . DoubleArray { Encoding : map [ string ] int { "amt" : 0 } , Base : [ ] int { 1 , 1 , 0 } , Check : [ ] int { 0 , 1 , 2 } }
)
2019-03-12 22:34:45 +00:00
func request_SwapClient_LoopOutQuote_0 ( ctx context . Context , marshaler runtime . Marshaler , client SwapClientClient , req * http . Request , pathParams map [ string ] string ) ( proto . Message , runtime . ServerMetadata , error ) {
var protoReq QuoteRequest
var metadata runtime . ServerMetadata
var (
val string
ok bool
err error
_ = err
)
val , ok = pathParams [ "amt" ]
if ! ok {
return nil , metadata , status . Errorf ( codes . InvalidArgument , "missing parameter %s" , "amt" )
}
protoReq . Amt , err = runtime . Int64 ( val )
if err != nil {
return nil , metadata , status . Errorf ( codes . InvalidArgument , "type mismatch, parameter: %s, error: %v" , "amt" , err )
}
2020-06-15 09:29:43 +00:00
if err := req . ParseForm ( ) ; err != nil {
return nil , metadata , status . Errorf ( codes . InvalidArgument , "%v" , err )
}
if err := runtime . PopulateQueryParameters ( & protoReq , req . Form , filter_SwapClient_LoopOutQuote_0 ) ; err != nil {
2020-02-05 02:45:27 +00:00
return nil , metadata , status . Errorf ( codes . InvalidArgument , "%v" , err )
}
2020-02-11 12:25:03 +00:00
msg , err := client . LoopOutQuote ( ctx , & protoReq , grpc . Header ( & metadata . HeaderMD ) , grpc . Trailer ( & metadata . TrailerMD ) )
2020-02-05 02:45:27 +00:00
return msg , metadata , err
}
2020-06-15 09:29:43 +00:00
func local_request_SwapClient_LoopOutQuote_0 ( ctx context . Context , marshaler runtime . Marshaler , server SwapClientServer , req * http . Request , pathParams map [ string ] string ) ( proto . Message , runtime . ServerMetadata , error ) {
var protoReq QuoteRequest
var metadata runtime . ServerMetadata
var (
val string
ok bool
err error
_ = err
)
val , ok = pathParams [ "amt" ]
if ! ok {
return nil , metadata , status . Errorf ( codes . InvalidArgument , "missing parameter %s" , "amt" )
}
protoReq . Amt , err = runtime . Int64 ( val )
if err != nil {
return nil , metadata , status . Errorf ( codes . InvalidArgument , "type mismatch, parameter: %s, error: %v" , "amt" , err )
}
2021-07-29 11:32:53 +00:00
if err := req . ParseForm ( ) ; err != nil {
return nil , metadata , status . Errorf ( codes . InvalidArgument , "%v" , err )
}
if err := runtime . PopulateQueryParameters ( & protoReq , req . Form , filter_SwapClient_LoopOutQuote_0 ) ; err != nil {
2020-06-15 09:29:43 +00:00
return nil , metadata , status . Errorf ( codes . InvalidArgument , "%v" , err )
}
msg , err := server . LoopOutQuote ( ctx , & protoReq )
return msg , metadata , err
}
2019-09-05 03:48:48 +00:00
func request_SwapClient_GetLoopInTerms_0 ( ctx context . Context , marshaler runtime . Marshaler , client SwapClientClient , req * http . Request , pathParams map [ string ] string ) ( proto . Message , runtime . ServerMetadata , error ) {
var protoReq TermsRequest
var metadata runtime . ServerMetadata
msg , err := client . GetLoopInTerms ( ctx , & protoReq , grpc . Header ( & metadata . HeaderMD ) , grpc . Trailer ( & metadata . TrailerMD ) )
return msg , metadata , err
}
2020-06-15 09:29:43 +00:00
func local_request_SwapClient_GetLoopInTerms_0 ( ctx context . Context , marshaler runtime . Marshaler , server SwapClientServer , req * http . Request , pathParams map [ string ] string ) ( proto . Message , runtime . ServerMetadata , error ) {
var protoReq TermsRequest
var metadata runtime . ServerMetadata
msg , err := server . GetLoopInTerms ( ctx , & protoReq )
return msg , metadata , err
}
2019-09-05 03:48:48 +00:00
var (
filter_SwapClient_GetLoopInQuote_0 = & utilities . DoubleArray { Encoding : map [ string ] int { "amt" : 0 } , Base : [ ] int { 1 , 1 , 0 } , Check : [ ] int { 0 , 1 , 2 } }
)
func request_SwapClient_GetLoopInQuote_0 ( ctx context . Context , marshaler runtime . Marshaler , client SwapClientClient , req * http . Request , pathParams map [ string ] string ) ( proto . Message , runtime . ServerMetadata , error ) {
var protoReq QuoteRequest
var metadata runtime . ServerMetadata
var (
val string
ok bool
err error
_ = err
)
val , ok = pathParams [ "amt" ]
if ! ok {
return nil , metadata , status . Errorf ( codes . InvalidArgument , "missing parameter %s" , "amt" )
}
protoReq . Amt , err = runtime . Int64 ( val )
if err != nil {
return nil , metadata , status . Errorf ( codes . InvalidArgument , "type mismatch, parameter: %s, error: %v" , "amt" , err )
}
2020-06-15 09:29:43 +00:00
if err := req . ParseForm ( ) ; err != nil {
return nil , metadata , status . Errorf ( codes . InvalidArgument , "%v" , err )
}
if err := runtime . PopulateQueryParameters ( & protoReq , req . Form , filter_SwapClient_GetLoopInQuote_0 ) ; err != nil {
2020-02-05 02:45:27 +00:00
return nil , metadata , status . Errorf ( codes . InvalidArgument , "%v" , err )
}
2020-02-11 12:25:03 +00:00
msg , err := client . GetLoopInQuote ( ctx , & protoReq , grpc . Header ( & metadata . HeaderMD ) , grpc . Trailer ( & metadata . TrailerMD ) )
2020-02-05 02:45:27 +00:00
return msg , metadata , err
}
2020-06-15 09:29:43 +00:00
func local_request_SwapClient_GetLoopInQuote_0 ( ctx context . Context , marshaler runtime . Marshaler , server SwapClientServer , req * http . Request , pathParams map [ string ] string ) ( proto . Message , runtime . ServerMetadata , error ) {
var protoReq QuoteRequest
var metadata runtime . ServerMetadata
var (
val string
ok bool
err error
_ = err
)
val , ok = pathParams [ "amt" ]
if ! ok {
return nil , metadata , status . Errorf ( codes . InvalidArgument , "missing parameter %s" , "amt" )
}
protoReq . Amt , err = runtime . Int64 ( val )
if err != nil {
return nil , metadata , status . Errorf ( codes . InvalidArgument , "type mismatch, parameter: %s, error: %v" , "amt" , err )
}
2021-07-29 11:32:53 +00:00
if err := req . ParseForm ( ) ; err != nil {
return nil , metadata , status . Errorf ( codes . InvalidArgument , "%v" , err )
}
if err := runtime . PopulateQueryParameters ( & protoReq , req . Form , filter_SwapClient_GetLoopInQuote_0 ) ; err != nil {
2020-06-15 09:29:43 +00:00
return nil , metadata , status . Errorf ( codes . InvalidArgument , "%v" , err )
}
msg , err := server . GetLoopInQuote ( ctx , & protoReq )
return msg , metadata , err
}
2021-05-10 14:55:53 +00:00
var (
filter_SwapClient_Probe_0 = & utilities . DoubleArray { Encoding : map [ string ] int { "amt" : 0 } , Base : [ ] int { 1 , 1 , 0 } , Check : [ ] int { 0 , 1 , 2 } }
)
func request_SwapClient_Probe_0 ( ctx context . Context , marshaler runtime . Marshaler , client SwapClientClient , req * http . Request , pathParams map [ string ] string ) ( proto . Message , runtime . ServerMetadata , error ) {
var protoReq ProbeRequest
var metadata runtime . ServerMetadata
var (
val string
ok bool
err error
_ = err
)
val , ok = pathParams [ "amt" ]
if ! ok {
return nil , metadata , status . Errorf ( codes . InvalidArgument , "missing parameter %s" , "amt" )
}
protoReq . Amt , err = runtime . Int64 ( val )
if err != nil {
return nil , metadata , status . Errorf ( codes . InvalidArgument , "type mismatch, parameter: %s, error: %v" , "amt" , err )
}
if err := req . ParseForm ( ) ; err != nil {
return nil , metadata , status . Errorf ( codes . InvalidArgument , "%v" , err )
}
if err := runtime . PopulateQueryParameters ( & protoReq , req . Form , filter_SwapClient_Probe_0 ) ; err != nil {
return nil , metadata , status . Errorf ( codes . InvalidArgument , "%v" , err )
}
msg , err := client . Probe ( ctx , & protoReq , grpc . Header ( & metadata . HeaderMD ) , grpc . Trailer ( & metadata . TrailerMD ) )
return msg , metadata , err
}
func local_request_SwapClient_Probe_0 ( ctx context . Context , marshaler runtime . Marshaler , server SwapClientServer , req * http . Request , pathParams map [ string ] string ) ( proto . Message , runtime . ServerMetadata , error ) {
var protoReq ProbeRequest
var metadata runtime . ServerMetadata
var (
val string
ok bool
err error
_ = err
)
val , ok = pathParams [ "amt" ]
if ! ok {
return nil , metadata , status . Errorf ( codes . InvalidArgument , "missing parameter %s" , "amt" )
}
protoReq . Amt , err = runtime . Int64 ( val )
if err != nil {
return nil , metadata , status . Errorf ( codes . InvalidArgument , "type mismatch, parameter: %s, error: %v" , "amt" , err )
}
if err := req . ParseForm ( ) ; err != nil {
return nil , metadata , status . Errorf ( codes . InvalidArgument , "%v" , err )
}
if err := runtime . PopulateQueryParameters ( & protoReq , req . Form , filter_SwapClient_Probe_0 ) ; err != nil {
return nil , metadata , status . Errorf ( codes . InvalidArgument , "%v" , err )
}
msg , err := server . Probe ( ctx , & protoReq )
return msg , metadata , err
}
2019-11-15 12:57:03 +00:00
func request_SwapClient_GetLsatTokens_0 ( ctx context . Context , marshaler runtime . Marshaler , client SwapClientClient , req * http . Request , pathParams map [ string ] string ) ( proto . Message , runtime . ServerMetadata , error ) {
var protoReq TokensRequest
var metadata runtime . ServerMetadata
msg , err := client . GetLsatTokens ( ctx , & protoReq , grpc . Header ( & metadata . HeaderMD ) , grpc . Trailer ( & metadata . TrailerMD ) )
return msg , metadata , err
}
2020-06-15 09:29:43 +00:00
func local_request_SwapClient_GetLsatTokens_0 ( ctx context . Context , marshaler runtime . Marshaler , server SwapClientServer , req * http . Request , pathParams map [ string ] string ) ( proto . Message , runtime . ServerMetadata , error ) {
var protoReq TokensRequest
var metadata runtime . ServerMetadata
msg , err := server . GetLsatTokens ( ctx , & protoReq )
return msg , metadata , err
}
2023-05-26 08:07:48 +00:00
func request_SwapClient_GetInfo_0 ( ctx context . Context , marshaler runtime . Marshaler , client SwapClientClient , req * http . Request , pathParams map [ string ] string ) ( proto . Message , runtime . ServerMetadata , error ) {
var protoReq GetInfoRequest
var metadata runtime . ServerMetadata
msg , err := client . GetInfo ( ctx , & protoReq , grpc . Header ( & metadata . HeaderMD ) , grpc . Trailer ( & metadata . TrailerMD ) )
return msg , metadata , err
}
func local_request_SwapClient_GetInfo_0 ( ctx context . Context , marshaler runtime . Marshaler , server SwapClientServer , req * http . Request , pathParams map [ string ] string ) ( proto . Message , runtime . ServerMetadata , error ) {
var protoReq GetInfoRequest
var metadata runtime . ServerMetadata
msg , err := server . GetInfo ( ctx , & protoReq )
return msg , metadata , err
}
2020-09-01 07:58:09 +00:00
func request_SwapClient_GetLiquidityParams_0 ( ctx context . Context , marshaler runtime . Marshaler , client SwapClientClient , req * http . Request , pathParams map [ string ] string ) ( proto . Message , runtime . ServerMetadata , error ) {
var protoReq GetLiquidityParamsRequest
var metadata runtime . ServerMetadata
msg , err := client . GetLiquidityParams ( ctx , & protoReq , grpc . Header ( & metadata . HeaderMD ) , grpc . Trailer ( & metadata . TrailerMD ) )
return msg , metadata , err
}
func local_request_SwapClient_GetLiquidityParams_0 ( ctx context . Context , marshaler runtime . Marshaler , server SwapClientServer , req * http . Request , pathParams map [ string ] string ) ( proto . Message , runtime . ServerMetadata , error ) {
var protoReq GetLiquidityParamsRequest
var metadata runtime . ServerMetadata
msg , err := server . GetLiquidityParams ( ctx , & protoReq )
return msg , metadata , err
}
func request_SwapClient_SetLiquidityParams_0 ( ctx context . Context , marshaler runtime . Marshaler , client SwapClientClient , req * http . Request , pathParams map [ string ] string ) ( proto . Message , runtime . ServerMetadata , error ) {
var protoReq SetLiquidityParamsRequest
var metadata runtime . ServerMetadata
newReader , berr := utilities . IOReaderFactory ( req . Body )
if berr != nil {
return nil , metadata , status . Errorf ( codes . InvalidArgument , "%v" , berr )
}
if err := marshaler . NewDecoder ( newReader ( ) ) . Decode ( & protoReq ) ; err != nil && err != io . EOF {
return nil , metadata , status . Errorf ( codes . InvalidArgument , "%v" , err )
}
msg , err := client . SetLiquidityParams ( ctx , & protoReq , grpc . Header ( & metadata . HeaderMD ) , grpc . Trailer ( & metadata . TrailerMD ) )
return msg , metadata , err
}
func local_request_SwapClient_SetLiquidityParams_0 ( ctx context . Context , marshaler runtime . Marshaler , server SwapClientServer , req * http . Request , pathParams map [ string ] string ) ( proto . Message , runtime . ServerMetadata , error ) {
var protoReq SetLiquidityParamsRequest
var metadata runtime . ServerMetadata
newReader , berr := utilities . IOReaderFactory ( req . Body )
if berr != nil {
return nil , metadata , status . Errorf ( codes . InvalidArgument , "%v" , berr )
}
if err := marshaler . NewDecoder ( newReader ( ) ) . Decode ( & protoReq ) ; err != nil && err != io . EOF {
return nil , metadata , status . Errorf ( codes . InvalidArgument , "%v" , err )
}
msg , err := server . SetLiquidityParams ( ctx , & protoReq )
return msg , metadata , err
}
2020-09-03 08:36:44 +00:00
func request_SwapClient_SuggestSwaps_0 ( ctx context . Context , marshaler runtime . Marshaler , client SwapClientClient , req * http . Request , pathParams map [ string ] string ) ( proto . Message , runtime . ServerMetadata , error ) {
var protoReq SuggestSwapsRequest
var metadata runtime . ServerMetadata
msg , err := client . SuggestSwaps ( ctx , & protoReq , grpc . Header ( & metadata . HeaderMD ) , grpc . Trailer ( & metadata . TrailerMD ) )
return msg , metadata , err
}
func local_request_SwapClient_SuggestSwaps_0 ( ctx context . Context , marshaler runtime . Marshaler , server SwapClientServer , req * http . Request , pathParams map [ string ] string ) ( proto . Message , runtime . ServerMetadata , error ) {
var protoReq SuggestSwapsRequest
var metadata runtime . ServerMetadata
msg , err := server . SuggestSwaps ( ctx , & protoReq )
return msg , metadata , err
}
2020-06-15 09:29:43 +00:00
// RegisterSwapClientHandlerServer registers the http handlers for service SwapClient to "mux".
// UnaryRPC :call SwapClientServer directly.
// StreamingRPC :currently unsupported pending https://github.com/grpc/grpc-go/issues/906.
2021-07-29 11:32:53 +00:00
// Note that using this registration option will cause many gRPC library features to stop working. Consider using RegisterSwapClientHandlerFromEndpoint instead.
2020-06-15 09:29:43 +00:00
func RegisterSwapClientHandlerServer ( ctx context . Context , mux * runtime . ServeMux , server SwapClientServer ) error {
mux . Handle ( "POST" , pattern_SwapClient_LoopOut_0 , func ( w http . ResponseWriter , req * http . Request , pathParams map [ string ] string ) {
ctx , cancel := context . WithCancel ( req . Context ( ) )
defer cancel ( )
2021-07-29 11:32:53 +00:00
var stream runtime . ServerTransportStream
ctx = grpc . NewContextWithServerTransportStream ( ctx , & stream )
2020-06-15 09:29:43 +00:00
inboundMarshaler , outboundMarshaler := runtime . MarshalerForRequest ( mux , req )
2023-09-28 09:02:50 +00:00
var err error
var annotatedContext context . Context
annotatedContext , err = runtime . AnnotateIncomingContext ( ctx , mux , req , "/looprpc.SwapClient/LoopOut" , runtime . WithHTTPPathPattern ( "/v1/loop/out" ) )
2020-06-15 09:29:43 +00:00
if err != nil {
runtime . HTTPError ( ctx , mux , outboundMarshaler , w , req , err )
return
}
2023-09-28 09:02:50 +00:00
resp , md , err := local_request_SwapClient_LoopOut_0 ( annotatedContext , inboundMarshaler , server , req , pathParams )
2021-07-29 11:32:53 +00:00
md . HeaderMD , md . TrailerMD = metadata . Join ( md . HeaderMD , stream . Header ( ) ) , metadata . Join ( md . TrailerMD , stream . Trailer ( ) )
2023-09-28 09:02:50 +00:00
annotatedContext = runtime . NewServerMetadataContext ( annotatedContext , md )
2020-06-15 09:29:43 +00:00
if err != nil {
2023-09-28 09:02:50 +00:00
runtime . HTTPError ( annotatedContext , mux , outboundMarshaler , w , req , err )
2020-06-15 09:29:43 +00:00
return
}
2023-09-28 09:02:50 +00:00
forward_SwapClient_LoopOut_0 ( annotatedContext , mux , outboundMarshaler , w , req , resp , mux . GetForwardResponseOptions ( ) ... )
2020-06-15 09:29:43 +00:00
} )
mux . Handle ( "POST" , pattern_SwapClient_LoopIn_0 , func ( w http . ResponseWriter , req * http . Request , pathParams map [ string ] string ) {
ctx , cancel := context . WithCancel ( req . Context ( ) )
defer cancel ( )
2021-07-29 11:32:53 +00:00
var stream runtime . ServerTransportStream
ctx = grpc . NewContextWithServerTransportStream ( ctx , & stream )
2020-06-15 09:29:43 +00:00
inboundMarshaler , outboundMarshaler := runtime . MarshalerForRequest ( mux , req )
2023-09-28 09:02:50 +00:00
var err error
var annotatedContext context . Context
annotatedContext , err = runtime . AnnotateIncomingContext ( ctx , mux , req , "/looprpc.SwapClient/LoopIn" , runtime . WithHTTPPathPattern ( "/v1/loop/in" ) )
2020-06-15 09:29:43 +00:00
if err != nil {
runtime . HTTPError ( ctx , mux , outboundMarshaler , w , req , err )
return
}
2023-09-28 09:02:50 +00:00
resp , md , err := local_request_SwapClient_LoopIn_0 ( annotatedContext , inboundMarshaler , server , req , pathParams )
2021-07-29 11:32:53 +00:00
md . HeaderMD , md . TrailerMD = metadata . Join ( md . HeaderMD , stream . Header ( ) ) , metadata . Join ( md . TrailerMD , stream . Trailer ( ) )
2023-09-28 09:02:50 +00:00
annotatedContext = runtime . NewServerMetadataContext ( annotatedContext , md )
2020-06-15 09:29:43 +00:00
if err != nil {
2023-09-28 09:02:50 +00:00
runtime . HTTPError ( annotatedContext , mux , outboundMarshaler , w , req , err )
2020-06-15 09:29:43 +00:00
return
}
2023-09-28 09:02:50 +00:00
forward_SwapClient_LoopIn_0 ( annotatedContext , mux , outboundMarshaler , w , req , resp , mux . GetForwardResponseOptions ( ) ... )
2020-06-15 09:29:43 +00:00
} )
mux . Handle ( "GET" , pattern_SwapClient_ListSwaps_0 , func ( w http . ResponseWriter , req * http . Request , pathParams map [ string ] string ) {
ctx , cancel := context . WithCancel ( req . Context ( ) )
defer cancel ( )
2021-07-29 11:32:53 +00:00
var stream runtime . ServerTransportStream
ctx = grpc . NewContextWithServerTransportStream ( ctx , & stream )
2020-06-15 09:29:43 +00:00
inboundMarshaler , outboundMarshaler := runtime . MarshalerForRequest ( mux , req )
2023-09-28 09:02:50 +00:00
var err error
var annotatedContext context . Context
annotatedContext , err = runtime . AnnotateIncomingContext ( ctx , mux , req , "/looprpc.SwapClient/ListSwaps" , runtime . WithHTTPPathPattern ( "/v1/loop/swaps" ) )
2020-06-15 09:29:43 +00:00
if err != nil {
runtime . HTTPError ( ctx , mux , outboundMarshaler , w , req , err )
return
}
2023-09-28 09:02:50 +00:00
resp , md , err := local_request_SwapClient_ListSwaps_0 ( annotatedContext , inboundMarshaler , server , req , pathParams )
2021-07-29 11:32:53 +00:00
md . HeaderMD , md . TrailerMD = metadata . Join ( md . HeaderMD , stream . Header ( ) ) , metadata . Join ( md . TrailerMD , stream . Trailer ( ) )
2023-09-28 09:02:50 +00:00
annotatedContext = runtime . NewServerMetadataContext ( annotatedContext , md )
2020-06-15 09:29:43 +00:00
if err != nil {
2023-09-28 09:02:50 +00:00
runtime . HTTPError ( annotatedContext , mux , outboundMarshaler , w , req , err )
2020-06-15 09:29:43 +00:00
return
}
2023-09-28 09:02:50 +00:00
forward_SwapClient_ListSwaps_0 ( annotatedContext , mux , outboundMarshaler , w , req , resp , mux . GetForwardResponseOptions ( ) ... )
2020-06-15 09:29:43 +00:00
} )
mux . Handle ( "GET" , pattern_SwapClient_SwapInfo_0 , func ( w http . ResponseWriter , req * http . Request , pathParams map [ string ] string ) {
ctx , cancel := context . WithCancel ( req . Context ( ) )
defer cancel ( )
2021-07-29 11:32:53 +00:00
var stream runtime . ServerTransportStream
ctx = grpc . NewContextWithServerTransportStream ( ctx , & stream )
2020-06-15 09:29:43 +00:00
inboundMarshaler , outboundMarshaler := runtime . MarshalerForRequest ( mux , req )
2023-09-28 09:02:50 +00:00
var err error
var annotatedContext context . Context
annotatedContext , err = runtime . AnnotateIncomingContext ( ctx , mux , req , "/looprpc.SwapClient/SwapInfo" , runtime . WithHTTPPathPattern ( "/v1/loop/swap/{id}" ) )
2020-06-15 09:29:43 +00:00
if err != nil {
runtime . HTTPError ( ctx , mux , outboundMarshaler , w , req , err )
return
}
2023-09-28 09:02:50 +00:00
resp , md , err := local_request_SwapClient_SwapInfo_0 ( annotatedContext , inboundMarshaler , server , req , pathParams )
2021-07-29 11:32:53 +00:00
md . HeaderMD , md . TrailerMD = metadata . Join ( md . HeaderMD , stream . Header ( ) ) , metadata . Join ( md . TrailerMD , stream . Trailer ( ) )
2023-09-28 09:02:50 +00:00
annotatedContext = runtime . NewServerMetadataContext ( annotatedContext , md )
2020-06-15 09:29:43 +00:00
if err != nil {
2023-09-28 09:02:50 +00:00
runtime . HTTPError ( annotatedContext , mux , outboundMarshaler , w , req , err )
2020-06-15 09:29:43 +00:00
return
}
2023-09-28 09:02:50 +00:00
forward_SwapClient_SwapInfo_0 ( annotatedContext , mux , outboundMarshaler , w , req , resp , mux . GetForwardResponseOptions ( ) ... )
2020-06-15 09:29:43 +00:00
} )
mux . Handle ( "GET" , pattern_SwapClient_LoopOutTerms_0 , func ( w http . ResponseWriter , req * http . Request , pathParams map [ string ] string ) {
ctx , cancel := context . WithCancel ( req . Context ( ) )
defer cancel ( )
2021-07-29 11:32:53 +00:00
var stream runtime . ServerTransportStream
ctx = grpc . NewContextWithServerTransportStream ( ctx , & stream )
2020-06-15 09:29:43 +00:00
inboundMarshaler , outboundMarshaler := runtime . MarshalerForRequest ( mux , req )
2023-09-28 09:02:50 +00:00
var err error
var annotatedContext context . Context
annotatedContext , err = runtime . AnnotateIncomingContext ( ctx , mux , req , "/looprpc.SwapClient/LoopOutTerms" , runtime . WithHTTPPathPattern ( "/v1/loop/out/terms" ) )
2020-06-15 09:29:43 +00:00
if err != nil {
runtime . HTTPError ( ctx , mux , outboundMarshaler , w , req , err )
return
}
2023-09-28 09:02:50 +00:00
resp , md , err := local_request_SwapClient_LoopOutTerms_0 ( annotatedContext , inboundMarshaler , server , req , pathParams )
2021-07-29 11:32:53 +00:00
md . HeaderMD , md . TrailerMD = metadata . Join ( md . HeaderMD , stream . Header ( ) ) , metadata . Join ( md . TrailerMD , stream . Trailer ( ) )
2023-09-28 09:02:50 +00:00
annotatedContext = runtime . NewServerMetadataContext ( annotatedContext , md )
2020-06-15 09:29:43 +00:00
if err != nil {
2023-09-28 09:02:50 +00:00
runtime . HTTPError ( annotatedContext , mux , outboundMarshaler , w , req , err )
2020-06-15 09:29:43 +00:00
return
}
2023-09-28 09:02:50 +00:00
forward_SwapClient_LoopOutTerms_0 ( annotatedContext , mux , outboundMarshaler , w , req , resp , mux . GetForwardResponseOptions ( ) ... )
2020-06-15 09:29:43 +00:00
} )
mux . Handle ( "GET" , pattern_SwapClient_LoopOutQuote_0 , func ( w http . ResponseWriter , req * http . Request , pathParams map [ string ] string ) {
ctx , cancel := context . WithCancel ( req . Context ( ) )
defer cancel ( )
2021-07-29 11:32:53 +00:00
var stream runtime . ServerTransportStream
ctx = grpc . NewContextWithServerTransportStream ( ctx , & stream )
2020-06-15 09:29:43 +00:00
inboundMarshaler , outboundMarshaler := runtime . MarshalerForRequest ( mux , req )
2023-09-28 09:02:50 +00:00
var err error
var annotatedContext context . Context
annotatedContext , err = runtime . AnnotateIncomingContext ( ctx , mux , req , "/looprpc.SwapClient/LoopOutQuote" , runtime . WithHTTPPathPattern ( "/v1/loop/out/quote/{amt}" ) )
2020-06-15 09:29:43 +00:00
if err != nil {
runtime . HTTPError ( ctx , mux , outboundMarshaler , w , req , err )
return
}
2023-09-28 09:02:50 +00:00
resp , md , err := local_request_SwapClient_LoopOutQuote_0 ( annotatedContext , inboundMarshaler , server , req , pathParams )
2021-07-29 11:32:53 +00:00
md . HeaderMD , md . TrailerMD = metadata . Join ( md . HeaderMD , stream . Header ( ) ) , metadata . Join ( md . TrailerMD , stream . Trailer ( ) )
2023-09-28 09:02:50 +00:00
annotatedContext = runtime . NewServerMetadataContext ( annotatedContext , md )
2020-06-15 09:29:43 +00:00
if err != nil {
2023-09-28 09:02:50 +00:00
runtime . HTTPError ( annotatedContext , mux , outboundMarshaler , w , req , err )
2020-06-15 09:29:43 +00:00
return
}
2023-09-28 09:02:50 +00:00
forward_SwapClient_LoopOutQuote_0 ( annotatedContext , mux , outboundMarshaler , w , req , resp , mux . GetForwardResponseOptions ( ) ... )
2020-06-15 09:29:43 +00:00
} )
mux . Handle ( "GET" , pattern_SwapClient_GetLoopInTerms_0 , func ( w http . ResponseWriter , req * http . Request , pathParams map [ string ] string ) {
ctx , cancel := context . WithCancel ( req . Context ( ) )
defer cancel ( )
2021-07-29 11:32:53 +00:00
var stream runtime . ServerTransportStream
ctx = grpc . NewContextWithServerTransportStream ( ctx , & stream )
2020-06-15 09:29:43 +00:00
inboundMarshaler , outboundMarshaler := runtime . MarshalerForRequest ( mux , req )
2023-09-28 09:02:50 +00:00
var err error
var annotatedContext context . Context
annotatedContext , err = runtime . AnnotateIncomingContext ( ctx , mux , req , "/looprpc.SwapClient/GetLoopInTerms" , runtime . WithHTTPPathPattern ( "/v1/loop/in/terms" ) )
2020-06-15 09:29:43 +00:00
if err != nil {
runtime . HTTPError ( ctx , mux , outboundMarshaler , w , req , err )
return
}
2023-09-28 09:02:50 +00:00
resp , md , err := local_request_SwapClient_GetLoopInTerms_0 ( annotatedContext , inboundMarshaler , server , req , pathParams )
2021-07-29 11:32:53 +00:00
md . HeaderMD , md . TrailerMD = metadata . Join ( md . HeaderMD , stream . Header ( ) ) , metadata . Join ( md . TrailerMD , stream . Trailer ( ) )
2023-09-28 09:02:50 +00:00
annotatedContext = runtime . NewServerMetadataContext ( annotatedContext , md )
2020-06-15 09:29:43 +00:00
if err != nil {
2023-09-28 09:02:50 +00:00
runtime . HTTPError ( annotatedContext , mux , outboundMarshaler , w , req , err )
2020-06-15 09:29:43 +00:00
return
}
2023-09-28 09:02:50 +00:00
forward_SwapClient_GetLoopInTerms_0 ( annotatedContext , mux , outboundMarshaler , w , req , resp , mux . GetForwardResponseOptions ( ) ... )
2020-06-15 09:29:43 +00:00
} )
mux . Handle ( "GET" , pattern_SwapClient_GetLoopInQuote_0 , func ( w http . ResponseWriter , req * http . Request , pathParams map [ string ] string ) {
ctx , cancel := context . WithCancel ( req . Context ( ) )
defer cancel ( )
2021-07-29 11:32:53 +00:00
var stream runtime . ServerTransportStream
ctx = grpc . NewContextWithServerTransportStream ( ctx , & stream )
2020-06-15 09:29:43 +00:00
inboundMarshaler , outboundMarshaler := runtime . MarshalerForRequest ( mux , req )
2023-09-28 09:02:50 +00:00
var err error
var annotatedContext context . Context
annotatedContext , err = runtime . AnnotateIncomingContext ( ctx , mux , req , "/looprpc.SwapClient/GetLoopInQuote" , runtime . WithHTTPPathPattern ( "/v1/loop/in/quote/{amt}" ) )
2020-06-15 09:29:43 +00:00
if err != nil {
runtime . HTTPError ( ctx , mux , outboundMarshaler , w , req , err )
return
}
2023-09-28 09:02:50 +00:00
resp , md , err := local_request_SwapClient_GetLoopInQuote_0 ( annotatedContext , inboundMarshaler , server , req , pathParams )
2021-07-29 11:32:53 +00:00
md . HeaderMD , md . TrailerMD = metadata . Join ( md . HeaderMD , stream . Header ( ) ) , metadata . Join ( md . TrailerMD , stream . Trailer ( ) )
2023-09-28 09:02:50 +00:00
annotatedContext = runtime . NewServerMetadataContext ( annotatedContext , md )
2020-06-15 09:29:43 +00:00
if err != nil {
2023-09-28 09:02:50 +00:00
runtime . HTTPError ( annotatedContext , mux , outboundMarshaler , w , req , err )
2020-06-15 09:29:43 +00:00
return
}
2023-09-28 09:02:50 +00:00
forward_SwapClient_GetLoopInQuote_0 ( annotatedContext , mux , outboundMarshaler , w , req , resp , mux . GetForwardResponseOptions ( ) ... )
2020-06-15 09:29:43 +00:00
} )
2021-05-10 14:55:53 +00:00
mux . Handle ( "GET" , pattern_SwapClient_Probe_0 , func ( w http . ResponseWriter , req * http . Request , pathParams map [ string ] string ) {
ctx , cancel := context . WithCancel ( req . Context ( ) )
defer cancel ( )
var stream runtime . ServerTransportStream
ctx = grpc . NewContextWithServerTransportStream ( ctx , & stream )
inboundMarshaler , outboundMarshaler := runtime . MarshalerForRequest ( mux , req )
2023-09-28 09:02:50 +00:00
var err error
var annotatedContext context . Context
annotatedContext , err = runtime . AnnotateIncomingContext ( ctx , mux , req , "/looprpc.SwapClient/Probe" , runtime . WithHTTPPathPattern ( "/v1/loop/in/probe/{amt}" ) )
2021-05-10 14:55:53 +00:00
if err != nil {
runtime . HTTPError ( ctx , mux , outboundMarshaler , w , req , err )
return
}
2023-09-28 09:02:50 +00:00
resp , md , err := local_request_SwapClient_Probe_0 ( annotatedContext , inboundMarshaler , server , req , pathParams )
2021-05-10 14:55:53 +00:00
md . HeaderMD , md . TrailerMD = metadata . Join ( md . HeaderMD , stream . Header ( ) ) , metadata . Join ( md . TrailerMD , stream . Trailer ( ) )
2023-09-28 09:02:50 +00:00
annotatedContext = runtime . NewServerMetadataContext ( annotatedContext , md )
2021-05-10 14:55:53 +00:00
if err != nil {
2023-09-28 09:02:50 +00:00
runtime . HTTPError ( annotatedContext , mux , outboundMarshaler , w , req , err )
2021-05-10 14:55:53 +00:00
return
}
2023-09-28 09:02:50 +00:00
forward_SwapClient_Probe_0 ( annotatedContext , mux , outboundMarshaler , w , req , resp , mux . GetForwardResponseOptions ( ) ... )
2021-05-10 14:55:53 +00:00
} )
2020-06-15 09:29:43 +00:00
mux . Handle ( "GET" , pattern_SwapClient_GetLsatTokens_0 , func ( w http . ResponseWriter , req * http . Request , pathParams map [ string ] string ) {
ctx , cancel := context . WithCancel ( req . Context ( ) )
defer cancel ( )
2021-07-29 11:32:53 +00:00
var stream runtime . ServerTransportStream
ctx = grpc . NewContextWithServerTransportStream ( ctx , & stream )
2020-06-15 09:29:43 +00:00
inboundMarshaler , outboundMarshaler := runtime . MarshalerForRequest ( mux , req )
2023-09-28 09:02:50 +00:00
var err error
var annotatedContext context . Context
annotatedContext , err = runtime . AnnotateIncomingContext ( ctx , mux , req , "/looprpc.SwapClient/GetLsatTokens" , runtime . WithHTTPPathPattern ( "/v1/lsat/tokens" ) )
2020-06-15 09:29:43 +00:00
if err != nil {
runtime . HTTPError ( ctx , mux , outboundMarshaler , w , req , err )
return
}
2023-09-28 09:02:50 +00:00
resp , md , err := local_request_SwapClient_GetLsatTokens_0 ( annotatedContext , inboundMarshaler , server , req , pathParams )
2021-07-29 11:32:53 +00:00
md . HeaderMD , md . TrailerMD = metadata . Join ( md . HeaderMD , stream . Header ( ) ) , metadata . Join ( md . TrailerMD , stream . Trailer ( ) )
2023-09-28 09:02:50 +00:00
annotatedContext = runtime . NewServerMetadataContext ( annotatedContext , md )
2020-06-15 09:29:43 +00:00
if err != nil {
2023-09-28 09:02:50 +00:00
runtime . HTTPError ( annotatedContext , mux , outboundMarshaler , w , req , err )
2020-06-15 09:29:43 +00:00
return
}
2023-09-28 09:02:50 +00:00
forward_SwapClient_GetLsatTokens_0 ( annotatedContext , mux , outboundMarshaler , w , req , resp , mux . GetForwardResponseOptions ( ) ... )
2020-06-15 09:29:43 +00:00
} )
2023-05-26 08:07:48 +00:00
mux . Handle ( "GET" , pattern_SwapClient_GetInfo_0 , func ( w http . ResponseWriter , req * http . Request , pathParams map [ string ] string ) {
ctx , cancel := context . WithCancel ( req . Context ( ) )
defer cancel ( )
var stream runtime . ServerTransportStream
ctx = grpc . NewContextWithServerTransportStream ( ctx , & stream )
inboundMarshaler , outboundMarshaler := runtime . MarshalerForRequest ( mux , req )
2023-09-28 09:02:50 +00:00
var err error
var annotatedContext context . Context
annotatedContext , err = runtime . AnnotateIncomingContext ( ctx , mux , req , "/looprpc.SwapClient/GetInfo" , runtime . WithHTTPPathPattern ( "/v1/loop/info" ) )
2023-05-26 08:07:48 +00:00
if err != nil {
runtime . HTTPError ( ctx , mux , outboundMarshaler , w , req , err )
return
}
2023-09-28 09:02:50 +00:00
resp , md , err := local_request_SwapClient_GetInfo_0 ( annotatedContext , inboundMarshaler , server , req , pathParams )
2023-05-26 08:07:48 +00:00
md . HeaderMD , md . TrailerMD = metadata . Join ( md . HeaderMD , stream . Header ( ) ) , metadata . Join ( md . TrailerMD , stream . Trailer ( ) )
2023-09-28 09:02:50 +00:00
annotatedContext = runtime . NewServerMetadataContext ( annotatedContext , md )
2023-05-26 08:07:48 +00:00
if err != nil {
2023-09-28 09:02:50 +00:00
runtime . HTTPError ( annotatedContext , mux , outboundMarshaler , w , req , err )
2023-05-26 08:07:48 +00:00
return
}
2023-09-28 09:02:50 +00:00
forward_SwapClient_GetInfo_0 ( annotatedContext , mux , outboundMarshaler , w , req , resp , mux . GetForwardResponseOptions ( ) ... )
2023-05-26 08:07:48 +00:00
} )
2020-09-01 07:58:09 +00:00
mux . Handle ( "GET" , pattern_SwapClient_GetLiquidityParams_0 , func ( w http . ResponseWriter , req * http . Request , pathParams map [ string ] string ) {
ctx , cancel := context . WithCancel ( req . Context ( ) )
defer cancel ( )
2021-07-29 11:32:53 +00:00
var stream runtime . ServerTransportStream
ctx = grpc . NewContextWithServerTransportStream ( ctx , & stream )
2020-09-01 07:58:09 +00:00
inboundMarshaler , outboundMarshaler := runtime . MarshalerForRequest ( mux , req )
2023-09-28 09:02:50 +00:00
var err error
var annotatedContext context . Context
annotatedContext , err = runtime . AnnotateIncomingContext ( ctx , mux , req , "/looprpc.SwapClient/GetLiquidityParams" , runtime . WithHTTPPathPattern ( "/v1/liquidity/params" ) )
2020-09-01 07:58:09 +00:00
if err != nil {
runtime . HTTPError ( ctx , mux , outboundMarshaler , w , req , err )
return
}
2023-09-28 09:02:50 +00:00
resp , md , err := local_request_SwapClient_GetLiquidityParams_0 ( annotatedContext , inboundMarshaler , server , req , pathParams )
2021-07-29 11:32:53 +00:00
md . HeaderMD , md . TrailerMD = metadata . Join ( md . HeaderMD , stream . Header ( ) ) , metadata . Join ( md . TrailerMD , stream . Trailer ( ) )
2023-09-28 09:02:50 +00:00
annotatedContext = runtime . NewServerMetadataContext ( annotatedContext , md )
2020-09-01 07:58:09 +00:00
if err != nil {
2023-09-28 09:02:50 +00:00
runtime . HTTPError ( annotatedContext , mux , outboundMarshaler , w , req , err )
2020-09-01 07:58:09 +00:00
return
}
2023-09-28 09:02:50 +00:00
forward_SwapClient_GetLiquidityParams_0 ( annotatedContext , mux , outboundMarshaler , w , req , resp , mux . GetForwardResponseOptions ( ) ... )
2020-09-01 07:58:09 +00:00
} )
mux . Handle ( "POST" , pattern_SwapClient_SetLiquidityParams_0 , func ( w http . ResponseWriter , req * http . Request , pathParams map [ string ] string ) {
ctx , cancel := context . WithCancel ( req . Context ( ) )
defer cancel ( )
2021-07-29 11:32:53 +00:00
var stream runtime . ServerTransportStream
ctx = grpc . NewContextWithServerTransportStream ( ctx , & stream )
2020-09-01 07:58:09 +00:00
inboundMarshaler , outboundMarshaler := runtime . MarshalerForRequest ( mux , req )
2023-09-28 09:02:50 +00:00
var err error
var annotatedContext context . Context
annotatedContext , err = runtime . AnnotateIncomingContext ( ctx , mux , req , "/looprpc.SwapClient/SetLiquidityParams" , runtime . WithHTTPPathPattern ( "/v1/liquidity/params" ) )
2020-09-01 07:58:09 +00:00
if err != nil {
runtime . HTTPError ( ctx , mux , outboundMarshaler , w , req , err )
return
}
2023-09-28 09:02:50 +00:00
resp , md , err := local_request_SwapClient_SetLiquidityParams_0 ( annotatedContext , inboundMarshaler , server , req , pathParams )
2021-07-29 11:32:53 +00:00
md . HeaderMD , md . TrailerMD = metadata . Join ( md . HeaderMD , stream . Header ( ) ) , metadata . Join ( md . TrailerMD , stream . Trailer ( ) )
2023-09-28 09:02:50 +00:00
annotatedContext = runtime . NewServerMetadataContext ( annotatedContext , md )
2020-09-01 07:58:09 +00:00
if err != nil {
2023-09-28 09:02:50 +00:00
runtime . HTTPError ( annotatedContext , mux , outboundMarshaler , w , req , err )
2020-09-01 07:58:09 +00:00
return
}
2023-09-28 09:02:50 +00:00
forward_SwapClient_SetLiquidityParams_0 ( annotatedContext , mux , outboundMarshaler , w , req , resp , mux . GetForwardResponseOptions ( ) ... )
2020-09-01 07:58:09 +00:00
} )
2020-09-03 08:36:44 +00:00
mux . Handle ( "GET" , pattern_SwapClient_SuggestSwaps_0 , func ( w http . ResponseWriter , req * http . Request , pathParams map [ string ] string ) {
ctx , cancel := context . WithCancel ( req . Context ( ) )
defer cancel ( )
2021-07-29 11:32:53 +00:00
var stream runtime . ServerTransportStream
ctx = grpc . NewContextWithServerTransportStream ( ctx , & stream )
2020-09-03 08:36:44 +00:00
inboundMarshaler , outboundMarshaler := runtime . MarshalerForRequest ( mux , req )
2023-09-28 09:02:50 +00:00
var err error
var annotatedContext context . Context
annotatedContext , err = runtime . AnnotateIncomingContext ( ctx , mux , req , "/looprpc.SwapClient/SuggestSwaps" , runtime . WithHTTPPathPattern ( "/v1/auto/suggest" ) )
2020-09-03 08:36:44 +00:00
if err != nil {
runtime . HTTPError ( ctx , mux , outboundMarshaler , w , req , err )
return
}
2023-09-28 09:02:50 +00:00
resp , md , err := local_request_SwapClient_SuggestSwaps_0 ( annotatedContext , inboundMarshaler , server , req , pathParams )
2021-07-29 11:32:53 +00:00
md . HeaderMD , md . TrailerMD = metadata . Join ( md . HeaderMD , stream . Header ( ) ) , metadata . Join ( md . TrailerMD , stream . Trailer ( ) )
2023-09-28 09:02:50 +00:00
annotatedContext = runtime . NewServerMetadataContext ( annotatedContext , md )
2020-09-03 08:36:44 +00:00
if err != nil {
2023-09-28 09:02:50 +00:00
runtime . HTTPError ( annotatedContext , mux , outboundMarshaler , w , req , err )
2020-09-03 08:36:44 +00:00
return
}
2023-09-28 09:02:50 +00:00
forward_SwapClient_SuggestSwaps_0 ( annotatedContext , mux , outboundMarshaler , w , req , resp , mux . GetForwardResponseOptions ( ) ... )
2020-09-03 08:36:44 +00:00
} )
2020-06-15 09:29:43 +00:00
return nil
}
2019-03-12 22:34:45 +00:00
// RegisterSwapClientHandlerFromEndpoint is same as RegisterSwapClientHandler but
// automatically dials to "endpoint" and closes the connection when "ctx" gets done.
func RegisterSwapClientHandlerFromEndpoint ( ctx context . Context , mux * runtime . ServeMux , endpoint string , opts [ ] grpc . DialOption ) ( err error ) {
conn , err := grpc . Dial ( endpoint , opts ... )
if err != nil {
return err
}
defer func ( ) {
if err != nil {
if cerr := conn . Close ( ) ; cerr != nil {
2019-11-15 12:57:03 +00:00
grpclog . Infof ( "Failed to close conn to %s: %v" , endpoint , cerr )
2019-03-12 22:34:45 +00:00
}
return
}
go func ( ) {
<- ctx . Done ( )
if cerr := conn . Close ( ) ; cerr != nil {
2019-11-15 12:57:03 +00:00
grpclog . Infof ( "Failed to close conn to %s: %v" , endpoint , cerr )
2019-03-12 22:34:45 +00:00
}
} ( )
} ( )
return RegisterSwapClientHandler ( ctx , mux , conn )
}
// RegisterSwapClientHandler registers the http handlers for service SwapClient to "mux".
// The handlers forward requests to the grpc endpoint over "conn".
func RegisterSwapClientHandler ( ctx context . Context , mux * runtime . ServeMux , conn * grpc . ClientConn ) error {
2019-11-15 12:57:03 +00:00
return RegisterSwapClientHandlerClient ( ctx , mux , NewSwapClientClient ( conn ) )
}
// RegisterSwapClientHandlerClient registers the http handlers for service SwapClient
// to "mux". The handlers forward requests to the grpc endpoint over the given implementation of "SwapClientClient".
// Note: the gRPC framework executes interceptors within the gRPC handler. If the passed in "SwapClientClient"
// doesn't go through the normal gRPC flow (creating a gRPC client etc.) then it will be up to the passed in
// "SwapClientClient" to call the correct interceptors.
func RegisterSwapClientHandlerClient ( ctx context . Context , mux * runtime . ServeMux , client SwapClientClient ) error {
2019-03-12 22:34:45 +00:00
mux . Handle ( "POST" , pattern_SwapClient_LoopOut_0 , func ( w http . ResponseWriter , req * http . Request , pathParams map [ string ] string ) {
2019-11-15 12:57:03 +00:00
ctx , cancel := context . WithCancel ( req . Context ( ) )
2019-03-12 22:34:45 +00:00
defer cancel ( )
inboundMarshaler , outboundMarshaler := runtime . MarshalerForRequest ( mux , req )
2023-09-28 09:02:50 +00:00
var err error
var annotatedContext context . Context
annotatedContext , err = runtime . AnnotateContext ( ctx , mux , req , "/looprpc.SwapClient/LoopOut" , runtime . WithHTTPPathPattern ( "/v1/loop/out" ) )
2019-03-12 22:34:45 +00:00
if err != nil {
runtime . HTTPError ( ctx , mux , outboundMarshaler , w , req , err )
return
}
2023-09-28 09:02:50 +00:00
resp , md , err := request_SwapClient_LoopOut_0 ( annotatedContext , inboundMarshaler , client , req , pathParams )
annotatedContext = runtime . NewServerMetadataContext ( annotatedContext , md )
2019-03-12 22:34:45 +00:00
if err != nil {
2023-09-28 09:02:50 +00:00
runtime . HTTPError ( annotatedContext , mux , outboundMarshaler , w , req , err )
2019-03-12 22:34:45 +00:00
return
}
2023-09-28 09:02:50 +00:00
forward_SwapClient_LoopOut_0 ( annotatedContext , mux , outboundMarshaler , w , req , resp , mux . GetForwardResponseOptions ( ) ... )
2019-03-12 22:34:45 +00:00
} )
2019-09-05 03:48:48 +00:00
mux . Handle ( "POST" , pattern_SwapClient_LoopIn_0 , func ( w http . ResponseWriter , req * http . Request , pathParams map [ string ] string ) {
2019-11-15 12:57:03 +00:00
ctx , cancel := context . WithCancel ( req . Context ( ) )
2019-03-12 22:34:45 +00:00
defer cancel ( )
2019-09-05 03:48:48 +00:00
inboundMarshaler , outboundMarshaler := runtime . MarshalerForRequest ( mux , req )
2023-09-28 09:02:50 +00:00
var err error
var annotatedContext context . Context
annotatedContext , err = runtime . AnnotateContext ( ctx , mux , req , "/looprpc.SwapClient/LoopIn" , runtime . WithHTTPPathPattern ( "/v1/loop/in" ) )
2019-09-05 03:48:48 +00:00
if err != nil {
runtime . HTTPError ( ctx , mux , outboundMarshaler , w , req , err )
return
2019-03-12 22:34:45 +00:00
}
2023-09-28 09:02:50 +00:00
resp , md , err := request_SwapClient_LoopIn_0 ( annotatedContext , inboundMarshaler , client , req , pathParams )
annotatedContext = runtime . NewServerMetadataContext ( annotatedContext , md )
2019-09-05 03:48:48 +00:00
if err != nil {
2023-09-28 09:02:50 +00:00
runtime . HTTPError ( annotatedContext , mux , outboundMarshaler , w , req , err )
2019-09-05 03:48:48 +00:00
return
}
2023-09-28 09:02:50 +00:00
forward_SwapClient_LoopIn_0 ( annotatedContext , mux , outboundMarshaler , w , req , resp , mux . GetForwardResponseOptions ( ) ... )
2019-09-05 03:48:48 +00:00
} )
2020-01-31 12:57:22 +00:00
mux . Handle ( "GET" , pattern_SwapClient_ListSwaps_0 , func ( w http . ResponseWriter , req * http . Request , pathParams map [ string ] string ) {
ctx , cancel := context . WithCancel ( req . Context ( ) )
defer cancel ( )
inboundMarshaler , outboundMarshaler := runtime . MarshalerForRequest ( mux , req )
2023-09-28 09:02:50 +00:00
var err error
var annotatedContext context . Context
annotatedContext , err = runtime . AnnotateContext ( ctx , mux , req , "/looprpc.SwapClient/ListSwaps" , runtime . WithHTTPPathPattern ( "/v1/loop/swaps" ) )
2020-01-31 12:57:22 +00:00
if err != nil {
runtime . HTTPError ( ctx , mux , outboundMarshaler , w , req , err )
return
}
2023-09-28 09:02:50 +00:00
resp , md , err := request_SwapClient_ListSwaps_0 ( annotatedContext , inboundMarshaler , client , req , pathParams )
annotatedContext = runtime . NewServerMetadataContext ( annotatedContext , md )
2020-01-31 12:57:22 +00:00
if err != nil {
2023-09-28 09:02:50 +00:00
runtime . HTTPError ( annotatedContext , mux , outboundMarshaler , w , req , err )
2020-01-31 12:57:22 +00:00
return
}
2023-09-28 09:02:50 +00:00
forward_SwapClient_ListSwaps_0 ( annotatedContext , mux , outboundMarshaler , w , req , resp , mux . GetForwardResponseOptions ( ) ... )
2020-01-31 12:57:22 +00:00
} )
mux . Handle ( "GET" , pattern_SwapClient_SwapInfo_0 , func ( w http . ResponseWriter , req * http . Request , pathParams map [ string ] string ) {
ctx , cancel := context . WithCancel ( req . Context ( ) )
defer cancel ( )
inboundMarshaler , outboundMarshaler := runtime . MarshalerForRequest ( mux , req )
2023-09-28 09:02:50 +00:00
var err error
var annotatedContext context . Context
annotatedContext , err = runtime . AnnotateContext ( ctx , mux , req , "/looprpc.SwapClient/SwapInfo" , runtime . WithHTTPPathPattern ( "/v1/loop/swap/{id}" ) )
2020-01-31 12:57:22 +00:00
if err != nil {
runtime . HTTPError ( ctx , mux , outboundMarshaler , w , req , err )
return
}
2023-09-28 09:02:50 +00:00
resp , md , err := request_SwapClient_SwapInfo_0 ( annotatedContext , inboundMarshaler , client , req , pathParams )
annotatedContext = runtime . NewServerMetadataContext ( annotatedContext , md )
2020-01-31 12:57:22 +00:00
if err != nil {
2023-09-28 09:02:50 +00:00
runtime . HTTPError ( annotatedContext , mux , outboundMarshaler , w , req , err )
2020-01-31 12:57:22 +00:00
return
}
2023-09-28 09:02:50 +00:00
forward_SwapClient_SwapInfo_0 ( annotatedContext , mux , outboundMarshaler , w , req , resp , mux . GetForwardResponseOptions ( ) ... )
2020-01-31 12:57:22 +00:00
} )
2019-09-05 03:48:48 +00:00
mux . Handle ( "GET" , pattern_SwapClient_LoopOutTerms_0 , func ( w http . ResponseWriter , req * http . Request , pathParams map [ string ] string ) {
2019-11-15 12:57:03 +00:00
ctx , cancel := context . WithCancel ( req . Context ( ) )
2019-09-05 03:48:48 +00:00
defer cancel ( )
2019-03-12 22:34:45 +00:00
inboundMarshaler , outboundMarshaler := runtime . MarshalerForRequest ( mux , req )
2023-09-28 09:02:50 +00:00
var err error
var annotatedContext context . Context
annotatedContext , err = runtime . AnnotateContext ( ctx , mux , req , "/looprpc.SwapClient/LoopOutTerms" , runtime . WithHTTPPathPattern ( "/v1/loop/out/terms" ) )
2019-03-12 22:34:45 +00:00
if err != nil {
runtime . HTTPError ( ctx , mux , outboundMarshaler , w , req , err )
return
}
2023-09-28 09:02:50 +00:00
resp , md , err := request_SwapClient_LoopOutTerms_0 ( annotatedContext , inboundMarshaler , client , req , pathParams )
annotatedContext = runtime . NewServerMetadataContext ( annotatedContext , md )
2019-03-12 22:34:45 +00:00
if err != nil {
2023-09-28 09:02:50 +00:00
runtime . HTTPError ( annotatedContext , mux , outboundMarshaler , w , req , err )
2019-03-12 22:34:45 +00:00
return
}
2023-09-28 09:02:50 +00:00
forward_SwapClient_LoopOutTerms_0 ( annotatedContext , mux , outboundMarshaler , w , req , resp , mux . GetForwardResponseOptions ( ) ... )
2019-03-12 22:34:45 +00:00
} )
mux . Handle ( "GET" , pattern_SwapClient_LoopOutQuote_0 , func ( w http . ResponseWriter , req * http . Request , pathParams map [ string ] string ) {
2019-11-15 12:57:03 +00:00
ctx , cancel := context . WithCancel ( req . Context ( ) )
2019-03-12 22:34:45 +00:00
defer cancel ( )
inboundMarshaler , outboundMarshaler := runtime . MarshalerForRequest ( mux , req )
2023-09-28 09:02:50 +00:00
var err error
var annotatedContext context . Context
annotatedContext , err = runtime . AnnotateContext ( ctx , mux , req , "/looprpc.SwapClient/LoopOutQuote" , runtime . WithHTTPPathPattern ( "/v1/loop/out/quote/{amt}" ) )
2019-03-12 22:34:45 +00:00
if err != nil {
runtime . HTTPError ( ctx , mux , outboundMarshaler , w , req , err )
return
}
2023-09-28 09:02:50 +00:00
resp , md , err := request_SwapClient_LoopOutQuote_0 ( annotatedContext , inboundMarshaler , client , req , pathParams )
annotatedContext = runtime . NewServerMetadataContext ( annotatedContext , md )
2019-03-12 22:34:45 +00:00
if err != nil {
2023-09-28 09:02:50 +00:00
runtime . HTTPError ( annotatedContext , mux , outboundMarshaler , w , req , err )
2019-03-12 22:34:45 +00:00
return
}
2023-09-28 09:02:50 +00:00
forward_SwapClient_LoopOutQuote_0 ( annotatedContext , mux , outboundMarshaler , w , req , resp , mux . GetForwardResponseOptions ( ) ... )
2019-03-12 22:34:45 +00:00
} )
2019-09-05 03:48:48 +00:00
mux . Handle ( "GET" , pattern_SwapClient_GetLoopInTerms_0 , func ( w http . ResponseWriter , req * http . Request , pathParams map [ string ] string ) {
2019-11-15 12:57:03 +00:00
ctx , cancel := context . WithCancel ( req . Context ( ) )
2019-09-05 03:48:48 +00:00
defer cancel ( )
inboundMarshaler , outboundMarshaler := runtime . MarshalerForRequest ( mux , req )
2023-09-28 09:02:50 +00:00
var err error
var annotatedContext context . Context
annotatedContext , err = runtime . AnnotateContext ( ctx , mux , req , "/looprpc.SwapClient/GetLoopInTerms" , runtime . WithHTTPPathPattern ( "/v1/loop/in/terms" ) )
2019-09-05 03:48:48 +00:00
if err != nil {
runtime . HTTPError ( ctx , mux , outboundMarshaler , w , req , err )
return
}
2023-09-28 09:02:50 +00:00
resp , md , err := request_SwapClient_GetLoopInTerms_0 ( annotatedContext , inboundMarshaler , client , req , pathParams )
annotatedContext = runtime . NewServerMetadataContext ( annotatedContext , md )
2019-09-05 03:48:48 +00:00
if err != nil {
2023-09-28 09:02:50 +00:00
runtime . HTTPError ( annotatedContext , mux , outboundMarshaler , w , req , err )
2019-09-05 03:48:48 +00:00
return
}
2023-09-28 09:02:50 +00:00
forward_SwapClient_GetLoopInTerms_0 ( annotatedContext , mux , outboundMarshaler , w , req , resp , mux . GetForwardResponseOptions ( ) ... )
2019-09-05 03:48:48 +00:00
} )
mux . Handle ( "GET" , pattern_SwapClient_GetLoopInQuote_0 , func ( w http . ResponseWriter , req * http . Request , pathParams map [ string ] string ) {
2019-11-15 12:57:03 +00:00
ctx , cancel := context . WithCancel ( req . Context ( ) )
2019-09-05 03:48:48 +00:00
defer cancel ( )
inboundMarshaler , outboundMarshaler := runtime . MarshalerForRequest ( mux , req )
2023-09-28 09:02:50 +00:00
var err error
var annotatedContext context . Context
annotatedContext , err = runtime . AnnotateContext ( ctx , mux , req , "/looprpc.SwapClient/GetLoopInQuote" , runtime . WithHTTPPathPattern ( "/v1/loop/in/quote/{amt}" ) )
2019-09-05 03:48:48 +00:00
if err != nil {
runtime . HTTPError ( ctx , mux , outboundMarshaler , w , req , err )
return
}
2023-09-28 09:02:50 +00:00
resp , md , err := request_SwapClient_GetLoopInQuote_0 ( annotatedContext , inboundMarshaler , client , req , pathParams )
annotatedContext = runtime . NewServerMetadataContext ( annotatedContext , md )
2019-09-05 03:48:48 +00:00
if err != nil {
2023-09-28 09:02:50 +00:00
runtime . HTTPError ( annotatedContext , mux , outboundMarshaler , w , req , err )
2019-09-05 03:48:48 +00:00
return
}
2023-09-28 09:02:50 +00:00
forward_SwapClient_GetLoopInQuote_0 ( annotatedContext , mux , outboundMarshaler , w , req , resp , mux . GetForwardResponseOptions ( ) ... )
2019-09-05 03:48:48 +00:00
} )
2021-05-10 14:55:53 +00:00
mux . Handle ( "GET" , pattern_SwapClient_Probe_0 , func ( w http . ResponseWriter , req * http . Request , pathParams map [ string ] string ) {
ctx , cancel := context . WithCancel ( req . Context ( ) )
defer cancel ( )
inboundMarshaler , outboundMarshaler := runtime . MarshalerForRequest ( mux , req )
2023-09-28 09:02:50 +00:00
var err error
var annotatedContext context . Context
annotatedContext , err = runtime . AnnotateContext ( ctx , mux , req , "/looprpc.SwapClient/Probe" , runtime . WithHTTPPathPattern ( "/v1/loop/in/probe/{amt}" ) )
2021-05-10 14:55:53 +00:00
if err != nil {
runtime . HTTPError ( ctx , mux , outboundMarshaler , w , req , err )
return
}
2023-09-28 09:02:50 +00:00
resp , md , err := request_SwapClient_Probe_0 ( annotatedContext , inboundMarshaler , client , req , pathParams )
annotatedContext = runtime . NewServerMetadataContext ( annotatedContext , md )
2021-05-10 14:55:53 +00:00
if err != nil {
2023-09-28 09:02:50 +00:00
runtime . HTTPError ( annotatedContext , mux , outboundMarshaler , w , req , err )
2021-05-10 14:55:53 +00:00
return
}
2023-09-28 09:02:50 +00:00
forward_SwapClient_Probe_0 ( annotatedContext , mux , outboundMarshaler , w , req , resp , mux . GetForwardResponseOptions ( ) ... )
2021-05-10 14:55:53 +00:00
} )
2019-11-15 12:57:03 +00:00
mux . Handle ( "GET" , pattern_SwapClient_GetLsatTokens_0 , func ( w http . ResponseWriter , req * http . Request , pathParams map [ string ] string ) {
ctx , cancel := context . WithCancel ( req . Context ( ) )
defer cancel ( )
inboundMarshaler , outboundMarshaler := runtime . MarshalerForRequest ( mux , req )
2023-09-28 09:02:50 +00:00
var err error
var annotatedContext context . Context
annotatedContext , err = runtime . AnnotateContext ( ctx , mux , req , "/looprpc.SwapClient/GetLsatTokens" , runtime . WithHTTPPathPattern ( "/v1/lsat/tokens" ) )
2019-11-15 12:57:03 +00:00
if err != nil {
runtime . HTTPError ( ctx , mux , outboundMarshaler , w , req , err )
return
}
2023-09-28 09:02:50 +00:00
resp , md , err := request_SwapClient_GetLsatTokens_0 ( annotatedContext , inboundMarshaler , client , req , pathParams )
annotatedContext = runtime . NewServerMetadataContext ( annotatedContext , md )
2019-11-15 12:57:03 +00:00
if err != nil {
2023-09-28 09:02:50 +00:00
runtime . HTTPError ( annotatedContext , mux , outboundMarshaler , w , req , err )
2019-11-15 12:57:03 +00:00
return
}
2023-09-28 09:02:50 +00:00
forward_SwapClient_GetLsatTokens_0 ( annotatedContext , mux , outboundMarshaler , w , req , resp , mux . GetForwardResponseOptions ( ) ... )
2019-11-15 12:57:03 +00:00
} )
2023-05-26 08:07:48 +00:00
mux . Handle ( "GET" , pattern_SwapClient_GetInfo_0 , func ( w http . ResponseWriter , req * http . Request , pathParams map [ string ] string ) {
ctx , cancel := context . WithCancel ( req . Context ( ) )
defer cancel ( )
inboundMarshaler , outboundMarshaler := runtime . MarshalerForRequest ( mux , req )
2023-09-28 09:02:50 +00:00
var err error
var annotatedContext context . Context
annotatedContext , err = runtime . AnnotateContext ( ctx , mux , req , "/looprpc.SwapClient/GetInfo" , runtime . WithHTTPPathPattern ( "/v1/loop/info" ) )
2023-05-26 08:07:48 +00:00
if err != nil {
runtime . HTTPError ( ctx , mux , outboundMarshaler , w , req , err )
return
}
2023-09-28 09:02:50 +00:00
resp , md , err := request_SwapClient_GetInfo_0 ( annotatedContext , inboundMarshaler , client , req , pathParams )
annotatedContext = runtime . NewServerMetadataContext ( annotatedContext , md )
2023-05-26 08:07:48 +00:00
if err != nil {
2023-09-28 09:02:50 +00:00
runtime . HTTPError ( annotatedContext , mux , outboundMarshaler , w , req , err )
2023-05-26 08:07:48 +00:00
return
}
2023-09-28 09:02:50 +00:00
forward_SwapClient_GetInfo_0 ( annotatedContext , mux , outboundMarshaler , w , req , resp , mux . GetForwardResponseOptions ( ) ... )
2023-05-26 08:07:48 +00:00
} )
2020-09-01 07:58:09 +00:00
mux . Handle ( "GET" , pattern_SwapClient_GetLiquidityParams_0 , func ( w http . ResponseWriter , req * http . Request , pathParams map [ string ] string ) {
ctx , cancel := context . WithCancel ( req . Context ( ) )
defer cancel ( )
inboundMarshaler , outboundMarshaler := runtime . MarshalerForRequest ( mux , req )
2023-09-28 09:02:50 +00:00
var err error
var annotatedContext context . Context
annotatedContext , err = runtime . AnnotateContext ( ctx , mux , req , "/looprpc.SwapClient/GetLiquidityParams" , runtime . WithHTTPPathPattern ( "/v1/liquidity/params" ) )
2020-09-01 07:58:09 +00:00
if err != nil {
runtime . HTTPError ( ctx , mux , outboundMarshaler , w , req , err )
return
}
2023-09-28 09:02:50 +00:00
resp , md , err := request_SwapClient_GetLiquidityParams_0 ( annotatedContext , inboundMarshaler , client , req , pathParams )
annotatedContext = runtime . NewServerMetadataContext ( annotatedContext , md )
2020-09-01 07:58:09 +00:00
if err != nil {
2023-09-28 09:02:50 +00:00
runtime . HTTPError ( annotatedContext , mux , outboundMarshaler , w , req , err )
2020-09-01 07:58:09 +00:00
return
}
2023-09-28 09:02:50 +00:00
forward_SwapClient_GetLiquidityParams_0 ( annotatedContext , mux , outboundMarshaler , w , req , resp , mux . GetForwardResponseOptions ( ) ... )
2020-09-01 07:58:09 +00:00
} )
mux . Handle ( "POST" , pattern_SwapClient_SetLiquidityParams_0 , func ( w http . ResponseWriter , req * http . Request , pathParams map [ string ] string ) {
ctx , cancel := context . WithCancel ( req . Context ( ) )
defer cancel ( )
inboundMarshaler , outboundMarshaler := runtime . MarshalerForRequest ( mux , req )
2023-09-28 09:02:50 +00:00
var err error
var annotatedContext context . Context
annotatedContext , err = runtime . AnnotateContext ( ctx , mux , req , "/looprpc.SwapClient/SetLiquidityParams" , runtime . WithHTTPPathPattern ( "/v1/liquidity/params" ) )
2020-09-01 07:58:09 +00:00
if err != nil {
runtime . HTTPError ( ctx , mux , outboundMarshaler , w , req , err )
return
}
2023-09-28 09:02:50 +00:00
resp , md , err := request_SwapClient_SetLiquidityParams_0 ( annotatedContext , inboundMarshaler , client , req , pathParams )
annotatedContext = runtime . NewServerMetadataContext ( annotatedContext , md )
2020-09-01 07:58:09 +00:00
if err != nil {
2023-09-28 09:02:50 +00:00
runtime . HTTPError ( annotatedContext , mux , outboundMarshaler , w , req , err )
2020-09-01 07:58:09 +00:00
return
}
2023-09-28 09:02:50 +00:00
forward_SwapClient_SetLiquidityParams_0 ( annotatedContext , mux , outboundMarshaler , w , req , resp , mux . GetForwardResponseOptions ( ) ... )
2020-09-01 07:58:09 +00:00
} )
2020-09-03 08:36:44 +00:00
mux . Handle ( "GET" , pattern_SwapClient_SuggestSwaps_0 , func ( w http . ResponseWriter , req * http . Request , pathParams map [ string ] string ) {
ctx , cancel := context . WithCancel ( req . Context ( ) )
defer cancel ( )
inboundMarshaler , outboundMarshaler := runtime . MarshalerForRequest ( mux , req )
2023-09-28 09:02:50 +00:00
var err error
var annotatedContext context . Context
annotatedContext , err = runtime . AnnotateContext ( ctx , mux , req , "/looprpc.SwapClient/SuggestSwaps" , runtime . WithHTTPPathPattern ( "/v1/auto/suggest" ) )
2020-09-03 08:36:44 +00:00
if err != nil {
runtime . HTTPError ( ctx , mux , outboundMarshaler , w , req , err )
return
}
2023-09-28 09:02:50 +00:00
resp , md , err := request_SwapClient_SuggestSwaps_0 ( annotatedContext , inboundMarshaler , client , req , pathParams )
annotatedContext = runtime . NewServerMetadataContext ( annotatedContext , md )
2020-09-03 08:36:44 +00:00
if err != nil {
2023-09-28 09:02:50 +00:00
runtime . HTTPError ( annotatedContext , mux , outboundMarshaler , w , req , err )
2020-09-03 08:36:44 +00:00
return
}
2023-09-28 09:02:50 +00:00
forward_SwapClient_SuggestSwaps_0 ( annotatedContext , mux , outboundMarshaler , w , req , resp , mux . GetForwardResponseOptions ( ) ... )
2020-09-03 08:36:44 +00:00
} )
2019-03-12 22:34:45 +00:00
return nil
}
var (
2021-07-29 11:32:53 +00:00
pattern_SwapClient_LoopOut_0 = runtime . MustPattern ( runtime . NewPattern ( 1 , [ ] int { 2 , 0 , 2 , 1 , 2 , 2 } , [ ] string { "v1" , "loop" , "out" } , "" ) )
2019-09-05 03:48:48 +00:00
2021-07-29 11:32:53 +00:00
pattern_SwapClient_LoopIn_0 = runtime . MustPattern ( runtime . NewPattern ( 1 , [ ] int { 2 , 0 , 2 , 1 , 2 , 2 } , [ ] string { "v1" , "loop" , "in" } , "" ) )
2019-09-05 03:48:48 +00:00
2021-07-29 11:32:53 +00:00
pattern_SwapClient_ListSwaps_0 = runtime . MustPattern ( runtime . NewPattern ( 1 , [ ] int { 2 , 0 , 2 , 1 , 2 , 2 } , [ ] string { "v1" , "loop" , "swaps" } , "" ) )
2020-01-31 12:57:22 +00:00
2021-07-29 11:32:53 +00:00
pattern_SwapClient_SwapInfo_0 = runtime . MustPattern ( runtime . NewPattern ( 1 , [ ] int { 2 , 0 , 2 , 1 , 2 , 2 , 1 , 0 , 4 , 1 , 5 , 3 } , [ ] string { "v1" , "loop" , "swap" , "id" } , "" ) )
2020-01-31 12:57:22 +00:00
2021-07-29 11:32:53 +00:00
pattern_SwapClient_LoopOutTerms_0 = runtime . MustPattern ( runtime . NewPattern ( 1 , [ ] int { 2 , 0 , 2 , 1 , 2 , 2 , 2 , 3 } , [ ] string { "v1" , "loop" , "out" , "terms" } , "" ) )
2019-03-12 22:34:45 +00:00
2021-07-29 11:32:53 +00:00
pattern_SwapClient_LoopOutQuote_0 = runtime . MustPattern ( runtime . NewPattern ( 1 , [ ] int { 2 , 0 , 2 , 1 , 2 , 2 , 2 , 3 , 1 , 0 , 4 , 1 , 5 , 4 } , [ ] string { "v1" , "loop" , "out" , "quote" , "amt" } , "" ) )
2019-03-12 22:34:45 +00:00
2021-07-29 11:32:53 +00:00
pattern_SwapClient_GetLoopInTerms_0 = runtime . MustPattern ( runtime . NewPattern ( 1 , [ ] int { 2 , 0 , 2 , 1 , 2 , 2 , 2 , 3 } , [ ] string { "v1" , "loop" , "in" , "terms" } , "" ) )
2019-09-05 03:48:48 +00:00
2021-07-29 11:32:53 +00:00
pattern_SwapClient_GetLoopInQuote_0 = runtime . MustPattern ( runtime . NewPattern ( 1 , [ ] int { 2 , 0 , 2 , 1 , 2 , 2 , 2 , 3 , 1 , 0 , 4 , 1 , 5 , 4 } , [ ] string { "v1" , "loop" , "in" , "quote" , "amt" } , "" ) )
2019-11-15 12:57:03 +00:00
2021-05-10 14:55:53 +00:00
pattern_SwapClient_Probe_0 = runtime . MustPattern ( runtime . NewPattern ( 1 , [ ] int { 2 , 0 , 2 , 1 , 2 , 2 , 2 , 3 , 1 , 0 , 4 , 1 , 5 , 4 } , [ ] string { "v1" , "loop" , "in" , "probe" , "amt" } , "" ) )
2021-07-29 11:32:53 +00:00
pattern_SwapClient_GetLsatTokens_0 = runtime . MustPattern ( runtime . NewPattern ( 1 , [ ] int { 2 , 0 , 2 , 1 , 2 , 2 } , [ ] string { "v1" , "lsat" , "tokens" } , "" ) )
2020-09-01 07:58:09 +00:00
2023-05-26 08:07:48 +00:00
pattern_SwapClient_GetInfo_0 = runtime . MustPattern ( runtime . NewPattern ( 1 , [ ] int { 2 , 0 , 2 , 1 , 2 , 2 } , [ ] string { "v1" , "loop" , "info" } , "" ) )
2021-07-29 11:32:53 +00:00
pattern_SwapClient_GetLiquidityParams_0 = runtime . MustPattern ( runtime . NewPattern ( 1 , [ ] int { 2 , 0 , 2 , 1 , 2 , 2 } , [ ] string { "v1" , "liquidity" , "params" } , "" ) )
2020-09-01 07:58:09 +00:00
2021-07-29 11:32:53 +00:00
pattern_SwapClient_SetLiquidityParams_0 = runtime . MustPattern ( runtime . NewPattern ( 1 , [ ] int { 2 , 0 , 2 , 1 , 2 , 2 } , [ ] string { "v1" , "liquidity" , "params" } , "" ) )
2020-09-03 08:36:44 +00:00
2021-07-29 11:32:53 +00:00
pattern_SwapClient_SuggestSwaps_0 = runtime . MustPattern ( runtime . NewPattern ( 1 , [ ] int { 2 , 0 , 2 , 1 , 2 , 2 } , [ ] string { "v1" , "auto" , "suggest" } , "" ) )
2019-03-12 22:34:45 +00:00
)
var (
forward_SwapClient_LoopOut_0 = runtime . ForwardResponseMessage
2019-09-05 03:48:48 +00:00
forward_SwapClient_LoopIn_0 = runtime . ForwardResponseMessage
2020-01-31 12:57:22 +00:00
forward_SwapClient_ListSwaps_0 = runtime . ForwardResponseMessage
forward_SwapClient_SwapInfo_0 = runtime . ForwardResponseMessage
2019-03-12 22:34:45 +00:00
forward_SwapClient_LoopOutTerms_0 = runtime . ForwardResponseMessage
forward_SwapClient_LoopOutQuote_0 = runtime . ForwardResponseMessage
2019-09-05 03:48:48 +00:00
forward_SwapClient_GetLoopInTerms_0 = runtime . ForwardResponseMessage
forward_SwapClient_GetLoopInQuote_0 = runtime . ForwardResponseMessage
2019-11-15 12:57:03 +00:00
2021-05-10 14:55:53 +00:00
forward_SwapClient_Probe_0 = runtime . ForwardResponseMessage
2019-11-15 12:57:03 +00:00
forward_SwapClient_GetLsatTokens_0 = runtime . ForwardResponseMessage
2020-09-01 07:58:09 +00:00
2023-05-26 08:07:48 +00:00
forward_SwapClient_GetInfo_0 = runtime . ForwardResponseMessage
2020-09-01 07:58:09 +00:00
forward_SwapClient_GetLiquidityParams_0 = runtime . ForwardResponseMessage
forward_SwapClient_SetLiquidityParams_0 = runtime . ForwardResponseMessage
2020-09-03 08:36:44 +00:00
forward_SwapClient_SuggestSwaps_0 = runtime . ForwardResponseMessage
2019-03-12 22:34:45 +00:00
)