wormhole-explorer/contract-watcher/support/hexutil.go

20 lines
332 B
Go

package support
import (
"strconv"
"strings"
)
func Remove0x(input string) string {
return strings.Replace(input, "0x", "", -1)
}
func DecodeUint64(input string) (uint64, error) {
input = Remove0x(input)
return strconv.ParseUint(input, 16, 64)
}
func EncodeHex(v uint64) string {
return "0x" + strconv.FormatUint(v, 16)
}