Decoding hexadecimal strings to integers
To turn hex values into decimals, use our UDF:
Since blockchain numbers can be really big and exceed the size limit of a numerical column on Snowflake, our UDF returns strings
But you can convert it by casting the return value to int:
Last updated