nick
nick is a vanity address searcher for deployments using Nick's method
or Nick's other method (CREATE2 proxy).
Quick Start
go install github.com/lightclient/nick@latest
nick search --initcode="0x60425000"
To search for a CREATE2 salt instead, for deployment through the
deterministic deployment proxy at 0x4e59b44847b379578588920cA78FbF26c0B4956C:
nick create2 --initcode="0x60425000"
This prints the salt and an unsigned legacy transaction against the proxy.
The transaction data is the 32-byte salt followed by the initcode; sign and
send it from any account to perform the deployment.
Usage
The following CLI flags can be used with search and create2.
OPTIONS:
--threads value number of threads to search on (default: 10)
--score value minimum score number to report (default: 5)
--prefix value desired prefix in vanity address (default: "0x0000")
--suffix value desired suffix in vanity address (default: "0xaaaa")
--initcode value desired initcode to deploy at vanity address (default: "0x")
--gaslimit value desired gas limit for deployment transaction (default: 250000)
--gasprice value desired gas price (gwei) for deployment transaction (default: 1000)
--help, -h show help (default: false)