1.0.2 • Published 3 years ago

truncate-eth-address v1.0.2

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

truncate-eth-address

A very small and simple utility to truncate ethereum addresses to a more readable format. No dependencies.

Before: 0x7358B726830A2E222f9b139E90483A37142bcBE5 After: 0x7358…cBE5

Usage:

import truncateEthAddress from 'truncate-eth-address'

const walletAddress = `0x7358B726830A2E222f9b139E90483A37142bcBE5`
console.log(`Your address is: ${truncateEthAddress(walletAddress)}`)