@tronlink/core
Version:
The library serves as a core module within TronLink Extension, which provides low-level wallet functionality for both Tron and Ethereum networks, primary features includes account generation and transaction signing
13 lines (12 loc) • 333 B
TypeScript
export declare enum DeviceStatusType {
LOCKED = "LOCKED",
UNAUTHORIZED = "UNAUTHORIZED",
AUTHORIZED = "AUTHORIZED"
}
export declare abstract class LedgerHidStatusChecker {
checkEnableUseHID(): boolean;
abstract getStatus(): Promise<{
deviceType?: string;
deviceStatus: DeviceStatusType;
}>;
}