| Crates.io | pumpfun-vanity |
| lib.rs | pumpfun-vanity |
| version | 0.1.1 |
| created_at | 2025-06-06 10:57:54.891838+00 |
| updated_at | 2025-06-06 11:01:59.871511+00 |
| description | A fast CLI and library for generating Pumpfun vanity addresses. |
| homepage | |
| repository | https://github.com/DevWonder01/pumpfun-vanity-address |
| max_upload_size | |
| id | 1702825 |
| size | 97,802 |
This project is a fast CLI tool to generate Pumpfun wallet addresses (public keys) with a custom prefix (vanity address), leveraging multithreading for speed.
Install Rust (if not already installed):
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
Follow the on-screen instructions to complete the installation.
Clone this repository:
git clone <repo-url>
cd pumpfun-vanity-address
Build the project:
cargo build --release
Run the program with your desired prefix:
cargo run --release -- --prefix <PREFIX>
<PREFIX> with the string you want your Pumpfun address to start with (case-sensitive).cargo run --release -- --prefix <PREFIX> --threads 8
cargo run --release -- --prefix Sol
This will search for a Pumpfun address starting with Sol using all available CPU cores.
You can use this crate as a library in your own Rust project:
Add to your Cargo.toml:
pumpfun-vanity = "0.1.0"
Example usage:
use pumpfun_vanity::find_vanity_address;
let result = find_vanity_address("pump", 8);
println!("Address: {}", result.keypair.pubkey());
MIT