Skip to content

Commit 9ecafd1

Browse files
committed
more fixes
1 parent 05a0160 commit 9ecafd1

File tree

1 file changed

+5
-5
lines changed
  • packages/neutron-sdk/src/stargate/dex

1 file changed

+5
-5
lines changed

packages/neutron-sdk/src/stargate/dex/types.rs

+5-5
Original file line numberDiff line numberDiff line change
@@ -725,15 +725,15 @@ impl From<SimulatePlaceLimitOrderRequest> for QuerySimulatePlaceLimitOrderReques
725725
pub struct SimulateMultiHopSwapRequest{
726726
pub sender: String,
727727
/// Account to which TokenOut is credited
728-
receiver: String,
728+
pub receiver: String,
729729
/// Array of possible routes
730-
routes: Vec<Vec<String>>,
730+
pub routes: Vec<Vec<String>>,
731731
/// Amount of TokenIn to swap
732-
amount_in: String,
732+
pub amount_in: String,
733733
/// Minimum price that that must be satisfied for a route to succeed
734-
exit_limit_price: String,
734+
pub exit_limit_price: String,
735735
/// If true all routes are run and the route with the best price is used
736-
pick_best_route: bool,
736+
pub pick_best_route: bool,
737737
}
738738

739739
#[derive(Serialize, Deserialize, Clone, Debug, PartialEq, Eq, JsonSchema)]

0 commit comments

Comments
 (0)