create2crunch icon indicating copy to clipboard operation
create2crunch copied to clipboard

A Rust program for finding salts that create gas-efficient Ethereum addresses via CREATE2.

Results 9 create2crunch issues
Sort by recently updated
recently updated
newest added

applied from: https://twitter.com/z0age/status/1556685489905831937

Currently the leading zero counting logic has a bug that if an address starts with a non-zero byte but has subsequent zero-bytes e.g. `0xaf0000b3...` the logic will essentially skip the...

## Background [`CreateX`](https://github.com/pcaversaccio/createx) is now live on 56 EVM chains (see also [createx.rocks](https://createx.rocks)). TL;DR: `CreateX` is a factory smart contract to make easier and safer usage of the `CREATE` and...

While testing this tool, i noticed the OpenCL kernel is constantly dropping in hashrate. It is also slow to begin with, only getting 20mh on my 5700xt I have also...

Add support create3 compatibility (https://github.com/0xSequence/create3/blob/master/contracts/Create3.sol). CreateX (https://github.com/0age/create2crunch/issues/17) also support create3. https://github.com/flood-protocol/maldon added CPU support for it.

I've been trying to mine an efficient contract address with create2crunch. I followed all the instructions found in: [this blog post](https://0xfoobar.substack.com/p/vanity-addresses), with little luck. I used the following configs: -...

I've been playing around with the repo and I'm a bit confused with the GPU code. Here's my confusion: if you set `const ZERO_BYTE: u8 = 0xff;` for the sake...

Replaces Blockscan with ContractScan. The latter only highlights the networks where the code is actually deployed (vs having e.g. some balance), supports over 100 networks (vs 50ish), and is open-source....

- Update dependencies - Enable assembly keccak256 by default; this is less portable and can be toggled off by building with `--no-default-features` - Use standard threads that operate on incrementing...