stargaze-studio/utils/getShortAddress.ts
2022-07-13 16:56:36 +03:00

4 lines
125 B
TypeScript

export const getShortAddress = (address: string) => {
return address.slice(0, 8).concat('.....') + address.substring(36)
}