Non-custodial BRC20 bulk minting tool intended for power users, who have access to a Bitcoin node.
It will allow you to mint up to 5000 times in 2 blocks, provided you used sufficient fees.
This tool ONLY GENERATES A JSON of all signed minting transactions, using a temporary address generated in your browser.
YOU WILL NEED TO BROADCAST THE TRANSACTIONS ON YOUR OWN
If this sounds too complicated, this might not be for you.
Step 1
Generate the transactions JSON file
Step 2
Broadcast the commit
transaction
bitcoin-cli sendrawtransaction "$(jq -r .commit mint.json)"
Step 3
Wait for the commit
transaction to confirm
Step 4
Broadcast all the reveal
transactions
jq -r '.reveals[]' mint.json | while read -r reveal; do bitcoin-cli sendrawtransaction "$reveal"; done
Step 5
Wait for the reveal
transactions to confirm
Step 6
Broadcast withdrawals
jq -r '.withdrawals[]' mint.json | while read -r reveal; do bitcoin-cli sendrawtransaction "$reveal"; done
harolding intensifies…
NFA/DYOR. You will get REKT. Probably.
DEVS TAKE NO RESPONSIBILITY