Batch Minting

On the Beggy platform, you can batch mint up to 100 times!

Automatic Unisat Sign In Instructions:

1.	Select the number of mints.
2.	Mint.
3.	When the Unisat sign-in page appears:
•	Right-click and select “Inspect”.
4.	In the “Inspect” page, paste the script below and hit Enter:
function clickViewAndSign() {
 const clickElement = (xpath) => {
   const el = document.evaluate(xpath, document,
  null, XPathResult.FIRST_ORDERED_NODE_TYPE,
  null).singleNodeValue;
   if (el && !el.dataset.clicked) {
     el.click();
     el.dataset.clicked = true; // Mark the element as clicked
   }
 };

 clickElement("//div[contains(text(),'View')]");
 clickElement("//div[text()='Sign']");
}

// Check every 1000 milliseconds (adjusted to reduce frequency)
setInterval(clickViewAndSign, 1000);
5.	Once confirmed, all your transactions will be automatically broadcasted!

Last updated