12 lines
393 B
TypeScript
12 lines
393 B
TypeScript
|
|
export declare function formatPublicKey(pubBytes: Uint8Array): string;
|
||
|
|
export declare function parseAddress(address: string): Uint8Array;
|
||
|
|
export declare function getKeys(seed: Uint8Array): Promise<{
|
||
|
|
publicKey: string;
|
||
|
|
privateKey: string;
|
||
|
|
base36: string;
|
||
|
|
base32: string;
|
||
|
|
base16: string;
|
||
|
|
contenthash: string;
|
||
|
|
}>;
|
||
|
|
export default getKeys;
|
||
|
|
//# sourceMappingURL=ipns.d.ts.map
|