UNPKG

367 BTypeScriptView Raw
1import type { Prefix } from './types.js';
2/**
3 * @name deriveAddress
4 * @summary Creates a sr25519 derived address from the supplied and path.
5 * @description
6 * Creates a sr25519 derived address based on the input address/publicKey and the uri supplied.
7 */
8export declare function deriveAddress(who: string | Uint8Array, suri: string, ss58Format?: Prefix): string;