mirror of
https://github.com/pezkuwichain/pezkuwi-common.git
synced 2026-04-22 07:57:59 +00:00
9 lines
367 B
TypeScript
9 lines
367 B
TypeScript
import type { Prefix } from './types.js';
|
|
/**
|
|
* @name deriveAddress
|
|
* @summary Creates a sr25519 derived address from the supplied and path.
|
|
* @description
|
|
* Creates a sr25519 derived address based on the input address/publicKey and the uri supplied.
|
|
*/
|
|
export declare function deriveAddress(who: string | Uint8Array, suri: string, ss58Format?: Prefix): string;
|