stargaze-studio/utils/getShortAddress.ts

4 lines
125 B
TypeScript
Raw Normal View History

2022-07-13 13:56:36 +00:00
export const getShortAddress = (address: string) => {
return address.slice(0, 8).concat('.....') + address.substring(36)
}