diff --git a/packages/neutron-sdk/src/proto_types/neutron.dex.rs b/packages/neutron-sdk/src/proto_types/neutron.dex.rs index 43e0fa58..a7ea4348 100644 --- a/packages/neutron-sdk/src/proto_types/neutron.dex.rs +++ b/packages/neutron-sdk/src/proto_types/neutron.dex.rs @@ -544,10 +544,6 @@ pub struct QueryGetPoolReservesResponse { } #[derive(Clone, PartialEq, ::prost::Message)] pub struct QueryEstimateMultiHopSwapRequest { - #[prost(string, tag = "1")] - pub creator: ::prost::alloc::string::String, - #[prost(string, tag = "2")] - pub receiver: ::prost::alloc::string::String, #[prost(message, repeated, tag = "3")] pub routes: ::prost::alloc::vec::Vec, #[prost(string, tag = "4")] @@ -566,10 +562,6 @@ pub struct QueryEstimateMultiHopSwapResponse { } #[derive(Clone, PartialEq, ::prost::Message)] pub struct QueryEstimatePlaceLimitOrderRequest { - #[prost(string, tag = "1")] - pub creator: ::prost::alloc::string::String, - #[prost(string, tag = "2")] - pub receiver: ::prost::alloc::string::String, #[prost(string, tag = "3")] pub token_in: ::prost::alloc::string::String, #[prost(string, tag = "4")] diff --git a/packages/neutron-sdk/src/stargate/dex/types.rs b/packages/neutron-sdk/src/stargate/dex/types.rs index 56db1af5..cc1433dc 100644 --- a/packages/neutron-sdk/src/stargate/dex/types.rs +++ b/packages/neutron-sdk/src/stargate/dex/types.rs @@ -540,8 +540,6 @@ impl From for QueryGetPoolReservesRequest { #[derive(Serialize, Deserialize, Clone, Debug, PartialEq, Eq, JsonSchema)] pub struct EstimateMultiHopSwapRequest { - pub creator: String, - pub receiver: String, pub routes: Vec>, pub amount_in: String, pub exit_limit_price: String, @@ -556,8 +554,6 @@ pub struct EstimateMultiHopSwapResponse { impl From for QueryEstimateMultiHopSwapRequest { fn from(v: EstimateMultiHopSwapRequest) -> QueryEstimateMultiHopSwapRequest { QueryEstimateMultiHopSwapRequest { - creator: v.creator, - receiver: v.receiver, routes: v .routes .into_iter() @@ -574,8 +570,6 @@ impl From for QueryEstimateMultiHopSwapRequest { #[derive(Serialize, Deserialize, Clone, Debug, PartialEq, Eq, JsonSchema)] pub struct EstimatePlaceLimitOrderRequest { - pub creator: String, - pub receiver: String, pub token_in: String, pub token_out: String, pub tick_index_in_to_out: i64, @@ -601,8 +595,6 @@ pub struct EstimatePlaceLimitOrderResponse { impl From for QueryEstimatePlaceLimitOrderRequest { fn from(v: EstimatePlaceLimitOrderRequest) -> QueryEstimatePlaceLimitOrderRequest { QueryEstimatePlaceLimitOrderRequest { - creator: v.creator, - receiver: v.receiver, token_in: v.token_in, token_out: v.token_out, tick_index_in_to_out: v.tick_index_in_to_out,