/** * In-house wallet generation (batch private keys for sniper / volume groups). * * We use viem's generatePrivateKey — cryptographically secure random secp256k1 keys. * No HD derivation here: each wallet is independent, no shared seed. * That's intentional for sniper groups — if one key leaks, the blast radius * is bounded to that single wallet. */ import type { Address, Hex } from 'viem'; export type GeneratedWallet = { address: Address; privateKey: Hex; note: string; }; /** Generate N fresh wallets */ export declare function generateWallets(count: number, notePrefix?: string): GeneratedWallet[]; /** Import a wallet from an existing private key */ export declare function walletFromPrivateKey(privateKey: Hex, note?: string): GeneratedWallet; //# sourceMappingURL=generate.d.ts.map