@trezor/connect
Version:
High-level javascript interface for Trezor hardware wallet.
21 lines • 635 B
TypeScript
import type { PROTO } from '../../../constants';
import { AbstractMethod } from '../../../core/AbstractMethod';
export default class TezosGetPublicKey extends AbstractMethod<'tezosGetPublicKey', PROTO.TezosGetPublicKey[]> {
hasBundle?: boolean;
init(): void;
get info(): string;
get confirmation(): {
view: "export-address";
label: string;
};
run(): Promise<{
path: number[];
publicKey: string;
serializedPath: string;
} | {
path: number[];
publicKey: string;
serializedPath: string;
}[]>;
}
//# sourceMappingURL=tezosGetPublicKey.d.ts.map