@trezor/connect
Version:
High-level javascript interface for Trezor hardware wallet.
13 lines • 524 B
TypeScript
import { PROTO } from '../constants';
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