UNPKG

@cross-nft-marketplace/auction-house-nft-components

Version:
11 lines (10 loc) 422 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.shortWallet = void 0; function shortWallet(wallet, showChars = 6) { const PREFIX_ADDRESS = "0x"; const addressFirst = wallet.slice(0, showChars + PREFIX_ADDRESS.length); const addressLast = wallet.slice(wallet.length - showChars); return `${addressFirst}...${addressLast}`; } exports.shortWallet = shortWallet;