Skip to content

A high-performance, multi-threaded vanity address generator for the Sui blockchain. #sui

Notifications You must be signed in to change notification settings

Ev3rlasting/Sui-Vanity-Wallet-Generator

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Vanity Sui Address Generator

This is a high-performance, multi-threaded vanity address generator for the Sui blockchain. It generates Sui wallet addresses based on a user-defined prefix using Rust and the Sui SDK. This tool uses Rayon to parallelize the work across multiple threads, making it suitable for generating vanity addresses efficiently. Use at your own risk as it's an experimental project!

Installation

To build this tool, you will need to have Rust installed on your machine. You can install Rust using rustup.

  1. Clone the repository:

    git clone https://github.com/Ev3rlasting/Sui-Vanity-Wallet-Generator
    cd Sui-Vanity-Wallet-Generator
  2. Build the project:

    cargo build --release
  3. Run the program with the desired prefix and number of threads:

    cargo run --release -- --prefix 0x1234 --threads 8

Usage

The tool can be customized with the following command-line options:

USAGE:
    vanity-sui-generator [OPTIONS]

OPTIONS:
    -p, --prefix <PREFIX>    The desired prefix for the Sui address (e.g., 0x1234)
    -t, --threads <THREADS>  Number of threads to use for address generation (default: 8)

For example:

cargo run --release -- --prefix 0x1234 --threads 4

This will generate addresses starting with 0x1234 using 4 threads.

Example Output

Found matching Sui address: 0x1234abcd1234...
Private Key: suiprivkey1xxxxxxxxxxxxxx
Thread SomeThreadID Attempts: 10000000

Dependencies

  • Sui SDK: Provides cryptographic functions and address handling.
  • Rayon: Enables parallelism across CPU cores.
  • Clap: For command-line argument parsing.
  • Regex: To match the desired prefix pattern.

About

A high-performance, multi-threaded vanity address generator for the Sui blockchain. #sui

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages