UNPKG

@trezor/connect

Version:

High-level javascript interface for Trezor hardware wallet.

13 lines 546 B
import { MessagesSchema as PROTO } from '@trezor/protobuf'; import { AbstractMethod } from '../core/AbstractMethod'; export default class GetOwnershipId extends AbstractMethod<'getOwnershipId', PROTO.GetOwnershipId[]> { hasBundle?: boolean; init(): void; get info(): string; get confirmation(): { view: "export-address"; label: string; }; run(): Promise<import("../types/api/getOwnershipId").OwnershipId | import("../types/api/getOwnershipId").OwnershipId[]>; } //# sourceMappingURL=getOwnershipId.d.ts.map