Last active
September 20, 2023 22:01
-
-
Save chuckbergeron/58a92de91afa57c49297198acbe3960a to your computer and use it in GitHub Desktop.
PoolTogether v5 Hyperstructure - Arbitrage Bot, Allowance
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
// Get allowance approval | |
const allowance = await tokenInContract.allowance( | |
relayerAddress, | |
liquidationRouterContract.address | |
); | |
// Note that we're setting it to the max allowance as we trust the security | |
// audits of the LiquidationRouter contract | |
if (allowance.lt(exactAmountIn)) { | |
const tx = await tokenInContract.approve( | |
liquidationRouterContract.address, | |
ethers.constants.MaxInt256 | |
); | |
await tx.wait(); | |
const newAllowanceResult = await tokenInContract.allowance( | |
relayerAddress, | |
liquidationRouterContract.address, | |
); | |
console.log('New allowance:', newAllowanceResult[0].toString()); | |
} else { | |
console.log('Sufficient allowance ✔'); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment