Example from the account dApp: ```js export function shortening(address: string): string { return address ? `${address.slice(0, 4)}...${address.slice(-4)}` : '' } ```