UNPKG

@kiloscribe/inscription-sdk

Version:
8 lines (7 loc) 294 B
import { PrivateKey } from '@hashgraph/sdk'; export type DetectedKeyType = 'ed25519' | 'ecdsa'; export interface KeyDetectionResult { detectedType: DetectedKeyType; privateKey: PrivateKey; } export declare function detectKeyTypeFromString(privateKeyString: string): KeyDetectionResult;