EVM Tooling

CREATE2
Vanity Miner

Generate deployer salts that produce contract addresses matching your target prefix, running entirely in-browser.

Configuration
The address calling CREATE2
keccak256 of your contract bytecode
Hex chars after 0x (case-insensitive)
--
Hashes Tried
--
Hashes / sec
0
Matches Found
Configure a deployer address and prefix to begin.
How it works

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.