UNPKG

@trezor/connect

Version:

High-level javascript interface for Trezor hardware wallet.

13 lines 419 B
import type { PROTO } from '../constants'; import { AbstractMethod } from '../core/AbstractMethod'; export default class RequestLogin extends AbstractMethod<'requestLogin', PROTO.SignIdentity> { asyncChallenge?: boolean; init(): void; get info(): string; run(): Promise<{ address: string; publicKey: string; signature: string; }>; } //# sourceMappingURL=requestLogin.d.ts.map