Last active
September 7, 2023 20:00
-
-
Save chuckbergeron/2fbee7c56ed557a5d275f3cd642b4492 to your computer and use it in GitHub Desktop.
PoolTogether v5 Hyperstructure - Prize Claiming Bot, Find Active Depositors
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 getClaims = async (): Promise<Claim[]> { => { | |
const contracts: ContractsBlob = await downloadContractsBlob(CHAIN_ID); | |
// We have found this to be too heavy to use in our OpenZeppelin Defender autotasks. | |
// Depending on the number of winners you may need to cache the results of this for | |
// every draw in flat files that your bot then fetches later | |
const claims: Claim[] = await computeDrawWinners(readProvider, contracts, CHAIN_ID); | |
return claims; | |
} | |
// computeDrawWinners() returns: | |
[ | |
{ | |
vault: '0x06b36307e4da41f0c42efb7d7abc02df0c8b5c49', | |
winner: '0x725e613f1816395dd453dc6394b1794a73152813', | |
tier: 1, | |
prizeIndex: 2, | |
claimed: false | |
}, | |
... | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment