You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There is issue with exclude_dexes in jupiter swap function
quote_url += "&excludeDexes=" + ','.join(exclude_dexes).lower -> quote_url += "&excludeDexes=" + ','.join(exclude_dexes)
remove .lower because the query fails
also priority_fee needs to be added to swap Line:645
priority_fee: int=0
and here Line:690
transaction_parameters = {
"quoteResponse": quoteResponse,
"prioritizationFeeLamports":priority_fee,
"userPublicKey": user_public_key,
"wrapAndUnwrapSol": wrap_unwrap_sol
}
and again thanks for great job!
The text was updated successfully, but these errors were encountered:
Hey, great work on SDK!
There is issue with exclude_dexes in jupiter swap function
quote_url += "&excludeDexes=" + ','.join(exclude_dexes).lower -> quote_url += "&excludeDexes=" + ','.join(exclude_dexes)
remove .lower because the query fails
also priority_fee needs to be added to swap Line:645
priority_fee: int=0
and here Line:690
transaction_parameters = {
"quoteResponse": quoteResponse,
"prioritizationFeeLamports":priority_fee,
"userPublicKey": user_public_key,
"wrapAndUnwrapSol": wrap_unwrap_sol
}
and again thanks for great job!
The text was updated successfully, but these errors were encountered: