shortenAddress

This function shortens an address if it is a valid EVM address.

Note that this function will not check if the address is an ENS.

Example

const address = shortenIfAddress(
"0x1234567890123456789012345678901234567890",
true,
); // result will be "0x1234...890"
function shortenAddress(
address?: string,
extraShort: boolean,
): string;

Parameters

The address to shorten

Type

let address: string;

If true, show the first 4 and last 3 characters

Type

let extraShort: boolean;

Returns

let returnType: string;

The shortened address