package common

import "strconv"

func ParseStringHexAddress(hexAddress string) (res uint64, err error) {
	parsedValue, err := strconv.ParseUint(hexAddress[2:], 16, 32)
	if err != nil {
		return 0, err
	}
	return parsedValue, nil
}