Skip to content

Instantly share code, notes, and snippets.

@chuckbergeron
Last active September 7, 2023 22:26
Show Gist options
  • Save chuckbergeron/7d593cee898ab40d150d5ab2843cd668 to your computer and use it in GitHub Desktop.
Save chuckbergeron/7d593cee898ab40d150d5ab2843cd668 to your computer and use it in GitHub Desktop.
PoolTogether v5 Hyperstructure - Prize Claiming Bot, Loop Through Unclaimed
const loopUnclaimedGroups = async (unclaimedClaimsGrouped, claimerContract: Contract) => {
for (let vaultTier of Object.entries(unclaimedClaimsGrouped)) {
const [key, value] = vaultTier;
const [vault, tier] = key.split(',');
const groupedClaims: any = value;
console.log(`Vault: ${vault}`);
console.log(`Tier Index: #${tier}`);
console.log(`# prizes: ${groupedClaims.length}`);
const claimPrizesParams = await calculateProfit(
vault,
Number(tier),
claimerContract,
groupedClaims,
);
// It's profitable if there is at least 1 claim to claim
if (claimPrizesParams.winners.length > 0) {
await executeTransaction(claimPrizesParams, claimerContract)
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment