UNPKG

319 BTypeScriptView Raw
1import type { HashType } from '../secp256k1/types.js';
2import type { Prefix } from './types.js';
3/**
4 * @name evmToAddress
5 * @summary Converts an EVM address to its corresponding SS58 address.
6 */
7export declare function evmToAddress(evmAddress: string | Uint8Array, ss58Format?: Prefix, hashType?: HashType): string;