Skip to content

Instantly share code, notes, and snippets.

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