10 lines
223 B
Go
10 lines
223 B
Go
|
|
package stringhelper
|
||
|
|
|
||
|
|
func DesensitizeWalletAddress(address string) string {
|
||
|
|
if len(address) < 10 { // 更严格的长度检查
|
||
|
|
return "0x...invalid"
|
||
|
|
}
|
||
|
|
|
||
|
|
return address[:6] + "..." + address[len(address)-4:]
|
||
|
|
}
|