A Rust tool optimized for the Uniswap challenge to find salts that generate gas-efficient Ethereum addresses.
This project is a modified version of the original create2crunch tool by 0age. The code has been customized specifically for the Uniswap challenge.
-
Clone the repository:
git clone https://github.com/codeesura/uniswap-challange cd uniswap-challange -
Build the Docker image:
docker build -t uniswap-challange . -
Run the Docker container:
docker run -d --name uniswap-container uniswap-challange
-
Check Logs:
docker logs --follow uniswap-container
Alternatively, you can run it locally with Rust installed:
cargo run --release- For ARM-based systems (e.g., Apple Silicon), use:
cargo run --release --no-default-features
- This tool can be resource-intensive, especially with GPU usage. Monitor your system’s performance to avoid overheating.
Modified from the original 0age/create2crunch.