Skip to content

Instantly share code, notes, and snippets.

@sabotagebeats
Last active March 13, 2021 00:37
Show Gist options
  • Save sabotagebeats/6e5f6800dcb164382e60dfef7b0b2bfa to your computer and use it in GitHub Desktop.
Save sabotagebeats/6e5f6800dcb164382e60dfef7b0b2bfa to your computer and use it in GitHub Desktop.
mooncat = Contract.from_explorer('0x60cd862c9c687a9de49aecdc3a99b74a4fc54ab6')
i = 0
while True:
currentMooncat = mooncat.adoptionOffers(mooncat.rescueOrder(i))
if currentMooncat[0] == True and currentMooncat[4] != '0x7C40c393DC0f283F318791d746d894DdD3693572':
print(currentMooncat, currentMooncat[3] * 10 **-18, "ETH")
i +=1
if i > 25600:
break
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment