export interface AccountInfo { publicKey: string; privateKey: string; privateKeyArray: number[]; index: number; } export interface MintConfig { keyPairsFile: string; interval: number; accountId?: number; maxThreads: number; mintAddress: string; urc?: string; lutAddress: string; rpcEndpoint: string; } export interface AccountStatus { publicKey: string; solBalance: number; isActive: boolean; lastMintTime?: Date; mintCount: number; errors: string[]; } export interface MintResult { publicKey: string; success: boolean; txHash?: string; error?: string; timestamp: Date; terminalOutput?: string; } //# sourceMappingURL=types.d.ts.map