I have a hex string:
n = "0xd458985bc81e284609dd69267c73b8464e1795d5b91ce6ed8871ecbc5b6ec4d1"
that I can convert to an int in python by using:
mynum = int(n,16)
and I get the long number: 96046857981227695367604088053507399752198003710848334588478940192231467697361
Now how would I do this in Golang?