| Crates.io | rustywallet-batch |
| lib.rs | rustywallet-batch |
| version | 0.3.0 |
| created_at | 2026-01-02 06:47:02.520512+00 |
| updated_at | 2026-01-03 05:31:54.407288+00 |
| description | High-performance batch key and address generation for cryptocurrency wallets |
| homepage | |
| repository | https://github.com/nirvagold/rustywallet |
| max_upload_size | |
| id | 2018093 |
| size | 155,750 |
High-performance batch key and address generation for cryptocurrency wallets.
use rustywallet_batch::address::{BatchAddressGenerator, BatchAddressType};
use rustywallet_address::Network;
// Generate 1000 P2WPKH addresses in parallel
let generator = BatchAddressGenerator::new(BatchAddressType::P2WPKH, Network::BitcoinMainnet);
let addresses = generator.generate_vec(1000).unwrap();
for (key, addr) in &addresses {
println!("{}: {}", key.to_hex(), addr);
}
use rustywallet_batch::address::{BatchAddressGenerator, BatchAddressType};
use rustywallet_address::Network;
// Stream 1 million addresses without storing all in memory
let generator = BatchAddressGenerator::new(BatchAddressType::P2TR, Network::BitcoinMainnet);
for (key, addr) in generator.generate_stream(1_000_000).take(100) {
println!("{}", addr);
}
use rustywallet_batch::prelude::*;
// Generate 1000 keys in parallel
let keys = BatchGenerator::new()
.count(1000)
.parallel()
.generate_vec()
.unwrap();
println!("Generated {} keys", keys.len());
use rustywallet_batch::mmap::{MmapBatchGenerator, OutputFormat};
// Generate keys directly to file
let count = MmapBatchGenerator::new("keys.txt", 1_000_000)
.format(OutputFormat::Hex)
.parallel(true)
.generate()
.unwrap();
println!("Generated {} keys to file", count);
use rustywallet_batch::checkpoint::ResumableBatchGenerator;
// Start or resume generation with checkpoints
let mut generator = ResumableBatchGenerator::new(
"my-job",
10_000_000,
"keys.txt",
"checkpoint.json",
);
generator.generate_with_progress(|progress| {
println!("Progress: {:.1}%", progress);
}).unwrap();
use rustywallet_batch::simd::SimdBatchProcessor;
// Check SIMD availability
println!("SIMD: {} ({})",
SimdBatchProcessor::is_available(),
SimdBatchProcessor::feature_name()
);
// Generate with SIMD optimization
let processor = SimdBatchProcessor::new();
let keys = processor.parallel_generate(10_000);
use rustywallet_batch::prelude::*;
// Stream keys without storing all in memory
let stream = BatchGenerator::new()
.count(1_000_000)
.generate()
.unwrap();
for key in stream.take(100) {
println!("{}", key.unwrap().to_hex());
}
use rustywallet_batch::prelude::*;
use rustywallet_keys::prelude::PrivateKey;
// Scan from a base key
let base = PrivateKey::from_hex(
"0000000000000000000000000000000000000000000000000000000000000001"
).unwrap();
let scanner = KeyScanner::new(base)
.direction(ScanDirection::Forward);
for key in scanner.scan_range(10) {
println!("{}", key.unwrap().to_hex());
}
use rustywallet_batch::prelude::*;
// Fast mode - maximum speed
let config = BatchConfig::fast();
// Balanced mode - good speed with reasonable memory
let config = BatchConfig::balanced();
// Memory efficient - minimal memory usage
let config = BatchConfig::memory_efficient();
Target performance: 1M+ keys per second with parallel processing enabled.
MIT