Solana Wallet Toolkit Guide

SkillSearch

Guide to the Solana Wallet Toolkit — vanity address generation with multi-threaded search, official Solana Labs libraries, Rust and TypeScript implementations. Includes wallet generation, custom address prefixes, and OG names on the blockchain.

Available today. Use it from your connected AI after setup.

Connect ahel once, and every AI you use reads what you have installed.

Then ask your AI: use the Solana Wallet Toolkit Guide skill

What this skill tells your AI

The instructions your AI receives, as published by nirholas/three.ws in data/skills/development/solana-toolkit-guide/SKILL.md and read by ahel’s review.

A Solana development toolkit using official Solana Labs libraries. Features vanity address generation with parallel, multi-threaded search across all CPU cores in both Rust and TypeScript.

Features

FeatureDescriptionImplementation
Vanity AddressesCustom wallet address prefixesRust (fastest) + TypeScript
Multi-threadedParallel search using all CPU coresRust + Node.js workers
Wallet GenerationStandard Solana wallet creationTypeScript
Key ManagementKeypair import/exportTypeScript
MCP ServerAI agent interfaceTypeScript

Vanity Address Generation

What Are Vanity Addresses?

Custom Solana addresses that start with a specific prefix:

  • SPA... — Brand your Sperax wallet
  • DeFi... — DeFi-themed address
  • Chad... — Flex address

Rust Implementation (Fastest)

# Build
cargo build --release

# Generate address starting with "SPA"
./target/release/solana-vanity --prefix SPA --threads 16

Performance comparison for 3-character prefix:

ThreadsTime (avg)
1~45 seconds
4~12 seconds
8~6 seconds
16~3 seconds

TypeScript Implementation

# Install
npm install @nirholas/solana-wallet-toolkit

# Generate vanity address
npx solana-vanity --prefix SPA
import { generateVanityAddress } from '@nirholas/solana-wallet-toolkit';

const result = await generateVanityAddress({
  prefix: 'SPA',
  threads: 8,
  caseSensitive: false
});

console.log(`Address: ${result.publicKey}`);
console.log(`Found in: ${result.attempts} attempts`);

Difficulty Scaling

Solana uses Base58 encoding. Expected attempts for a prefix:

Prefix LengthAvg AttemptsTime (8 threads)
1 char~58< 1 second
2 chars~3,364< 1 second
3 chars~195,112~3 seconds
4 chars~11.3M~3 minutes
5 chars~656M~3 hours
6 chars~38B~7 days

Wallet Generation

import { Wallet } from '@nirholas/solana-wallet-toolkit';

// Create new wallet
const wallet = Wallet.create();
console.log(wallet.publicKey.toBase58());

// From seed phrase
const restored = Wallet.fromMnemonic('your twelve words here');

// Export keypair
const keypair = wallet.exportKeypair();

MCP Integration

{
  "mcpServers": {
    "solana-toolkit": {
      "command": "npx",
      "args": ["@nirholas/solana-wallet-toolkit", "mcp"]
    }
  }
}

Tools:

  • generateWallet — Create new Solana wallet
  • generateVanityAddress — Generate vanity address
  • getBalance — Check SOL/SPL token balance
  • getTokenAccounts — List token holdings

Use Cases

Brand Identity

Generate a branded wallet address for your project that's recognizable and memorable.

Security Research

Test address generation performance and entropy distribution.

Portfolio Tracking

Use the toolkit to create and manage multiple Solana wallets for different purposes.

Links

Signals

GitHub stars
114
Forks
29
Last commit
Sep 2026
Advanced
Catalog kind
skill
Gateway key
solana-toolkit-guide
Source
github.com/nirholas/three.ws