fix repay + maxaccounts

This commit is contained in:
Adrian Brzeziński 2024-02-29 17:31:00 +01:00
parent 2993fa69b8
commit 36f10ee8a7
1 changed files with 2 additions and 3 deletions

View File

@ -133,9 +133,7 @@ export const unstakeAndSwap = async (
(stakeAmountToRepay
? toNativeI80F48(stakeAmountToRepay, stakeBank.mintDecimals)
: borrowed.abs().div(stakeBank.getAssetPrice())
)
.add(I80F48.fromNumber(100))
.toNumber(),
).toNumber() * 1.002,
)
console.log('borrowedSol amount: ', borrowed.toNumber())
@ -758,6 +756,7 @@ const fetchJupiterRoutes = async (
amount: amount.toString(),
slippageBps: Math.ceil(slippage * 100).toString(),
feeBps: feeBps.toString(),
maxAccounts: '50',
swapMode,
onlyDirectRoutes: `${onlyDirectRoutes}`,
}).toString()