This commit is contained in:
aozhiwei 2024-06-22 21:21:04 +08:00
parent a26208f76e
commit 763b161e26

View File

@ -136,3 +136,7 @@ func AdjustRangeValue[T int | int32 | int64 | float32 | float64](value T, minV T
}
return value
}
func IsWeb3ZeroAddress(address string) bool {
return address == "0x0000000000000000000000000000000000000000"
}