Skip to content

Commit

Permalink
more fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
jcompagni10 committed Dec 21, 2024
1 parent 05a0160 commit 9ecafd1
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions packages/neutron-sdk/src/stargate/dex/types.rs
Original file line number Diff line number Diff line change
Expand Up @@ -725,15 +725,15 @@ impl From<SimulatePlaceLimitOrderRequest> for QuerySimulatePlaceLimitOrderReques
pub struct SimulateMultiHopSwapRequest{
pub sender: String,
/// Account to which TokenOut is credited
receiver: String,
pub receiver: String,
/// Array of possible routes
routes: Vec<Vec<String>>,
pub routes: Vec<Vec<String>>,
/// Amount of TokenIn to swap
amount_in: String,
pub amount_in: String,
/// Minimum price that that must be satisfied for a route to succeed
exit_limit_price: String,
pub exit_limit_price: String,
/// If true all routes are run and the route with the best price is used
pick_best_route: bool,
pub pick_best_route: bool,
}

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

0 comments on commit 9ecafd1

Please sign in to comment.