Skip to content

Instantly share code, notes, and snippets.

@chuckbergeron
Last active September 20, 2023 22:06
Show Gist options
  • Save chuckbergeron/d6702829911bdcce9a2f43056cb6236f to your computer and use it in GitHub Desktop.
Save chuckbergeron/d6702829911bdcce9a2f43056cb6236f to your computer and use it in GitHub Desktop.
PoolTogether v5 Hyperstructure - Arbitrage Bot, Swap Transaction
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