1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-12-23 09:52:26 +01:00

Show first four characters of account after 0x in tx list

This commit is contained in:
Whymarrh Whitby 2018-07-18 10:21:15 -02:30
parent f6ca06f775
commit 45faf3d558

View File

@ -5,11 +5,11 @@ import copyToClipboard from 'copy-to-clipboard'
const Tooltip = require('../tooltip-v2.js')
const addressStripper = (address = '') => {
if (address.length < 4) {
if (address.length < 11) {
return address
}
return `${address.slice(0, 4)}...${address.slice(-4)}`
return `${address.slice(0, 6)}...${address.slice(-4)}`
}
class SelectedAccount extends Component {