Last active
September 20, 2023 22:06
-
-
Save chuckbergeron/d6702829911bdcce9a2f43056cb6236f to your computer and use it in GitHub Desktop.
PoolTogether v5 Hyperstructure - Arbitrage Bot, Swap Transaction
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if (profitable) { | |
const transactionPopulated = await | |
liquidationRouterContract.populateTransaction.swapExactAmountOut( | |
liquidationPair.address, | |
swapRecipient, | |
wantedAmountsOut[selectedIndex], | |
amountInMin, | |
Math.floor(Date.now() / 1000) + 100 // deadline | |
); | |
const transactionSentToNetwork = await relayer.sendTransaction({ | |
data: transactionPopulated.data, | |
to: transactionPopulated.to, | |
gasLimit: 600000, | |
}); | |
console.log('Transaction hash:', transactionSentToNetwork.hash); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment