Generate deployer salts that produce contract addresses matching your target prefix, running entirely in-browser.
CREATE2 deterministically computes a contract address as
keccak256(0xff ++ deployer ++ salt ++ keccak256(initCode))[12:].
Because the salt is a free 32-byte parameter, you can grind it until
the resulting address starts with any hex prefix.
Difficulty scales as 16^n per nibble. A 4-char prefix has
roughly 1-in-65,536 odds. This miner runs 500k to 2M hashes per second in-browser
depending on your CPU.
All computation happens locally. No data leaves your browser. The found salt can be used directly in your deployer factory contract.