kodadot/nft-gallery

View on GitHub
utils/shortAddress.ts

Summary

Maintainability
A
0 mins
Test Coverage
const shortAddress = (
  address: string,
  begin: number = 6,
  end: number = -6,
): string => address ? `${address.slice(0, begin)}...${address.slice(end)}` : ''

export default shortAddress