Skip to content

Instantly share code, notes, and snippets.

@implicitlycorrect
Created February 1, 2024 16:00
Show Gist options
  • Save implicitlycorrect/b857505a2f2855945e4684f1633c64a5 to your computer and use it in GitHub Desktop.
Save implicitlycorrect/b857505a2f2855945e4684f1633c64a5 to your computer and use it in GitHub Desktop.
Stake reload claimer
// Stake Reload Claimer
// https://stake.com/?tab=reload&modal=vip
function tryClaimReload() {
const claimButton = document.querySelector("button[type='submit'].variant-success");
if (claimButton && !claimButton.disabled) {
claimButton.click();
}
}
setInterval(tryClaimReload, 1000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment