(address: string)
| 51 | } |
| 52 | |
| 53 | export function formatAddress(address: string) { |
| 54 | return address.slice(0, 6) + "..." + address.slice(-4) |
| 55 | } |
| 56 | |
| 57 | export function formatString(str: string) { |
| 58 | if (str.length > 10) { |
no outgoing calls
no test coverage detected