Currently trying to get the toString(16) method to return a value.
Im using the following code.
`0x${(340282366920938463463374607431768211456).toString(16)}`
Which correctly returns:
0x100000000000000000000000000000000
However when I try to run the same code for a different number:
`0x${(340282366920938463463374607431768215552).toString(16)}`
This returns the exact same number as above:
0x100000000000000000000000000000000
I would expect the second option to return:
0x100000000000000000000000000000100
Any pointers as to what I might be missing would be truly helpful