UNPKG

@trezor/connect

Version:

High-level javascript interface for Trezor hardware wallet.

11 lines 445 B
import { MessagesSchema as PROTO } from '@trezor/protobuf'; import { AbstractMethod } from '../core/AbstractMethod'; export default class EvoluGetDelegatedIdentityKey extends AbstractMethod<'evoluGetDelegatedIdentityKey', PROTO.EvoluGetDelegatedIdentityKey> { hasBundle?: boolean; init(): void; get info(): string; run(): Promise<{ private_key: string; }>; } //# sourceMappingURL=evoluGetDelegatedIdentityKey.d.ts.map