9 lines
339 B
TypeScript
9 lines
339 B
TypeScript
|
|
export declare function formatPublicKey(pubBytes: Uint8Array): string;
|
||
|
|
export declare function parseAddress(address: string): Uint8Array;
|
||
|
|
export declare function getKeys(seed: Uint8Array): Promise<{
|
||
|
|
publicKeyBytes: Uint8Array;
|
||
|
|
publicKey: string;
|
||
|
|
privateKey: string;
|
||
|
|
}>;
|
||
|
|
export default getKeys;
|
||
|
|
//# sourceMappingURL=tor.d.ts.map
|