Last active
September 7, 2023 22:26
-
-
Save chuckbergeron/7d593cee898ab40d150d5ab2843cd668 to your computer and use it in GitHub Desktop.
PoolTogether v5 Hyperstructure - Prize Claiming Bot, Loop Through Unclaimed
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
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