@trezor/connect
Version:
High-level javascript interface for Trezor hardware wallet.
13 lines • 548 B
TypeScript
import { PROTO } from '../constants';
import { AbstractMethod } from '../core/AbstractMethod';
export default class GetOwnershipProof extends AbstractMethod<'getOwnershipProof', PROTO.GetOwnershipProof[]> {
hasBundle?: boolean;
init(): void;
get info(): string;
get confirmation(): {
view: "export-address";
label: string;
};
run(): Promise<import("../types/api/getOwnershipProof").OwnershipProof | import("../types/api/getOwnershipProof").OwnershipProof[]>;
}
//# sourceMappingURL=getOwnershipProof.d.ts.map