@signumjs/core
Version:
Principal package with functions and models for building Signum Network applications.
10 lines (9 loc) • 373 B
TypeScript
/**
* @internal
* Encode a numeric id into Reed-Solomon address <Prefix>-XXXX-XXXX-XXXX-XXXXX
* @param numericId The numeric Id
* @param prefix The prefix for the address
* @return the Reed-Solomon address encoding, or undefined if passed null, undefined
*
*/
export declare const convertNumericIdToReedSolomonAddress: (numericId: string, prefix: string) => string;