An open API service indexing awesome lists of open source software.

https://github.com/vectorized/function-selector-miner

Solidity Function Selector Miner (AVX2 + Multithreaded)
https://github.com/vectorized/function-selector-miner

Last synced: 9 months ago
JSON representation

Solidity Function Selector Miner (AVX2 + Multithreaded)

Awesome Lists containing this project

README

          

# Function Selector Miner

Simple and fast Solidity function selector miner (CPU based).

Uses AVX2 instructions and multithreading to compute hashes in parallel.

Should be able to mine most selectors under a minute with a core i7-12700F.

## Requirements

A recent Rust compiler. Tested with rustc 1.72.0.

## Running

```
cargo run --release [num_threads]
```

For example:

```
cargo run --release "someFunction" "(uint256,address)" "0x12345678"
```