I am running an API call that’s returning a list of results and one of the fields of data in each result is the field “token_id” which is encoded
I need to decode each “token_id” in the list
To do this, I am using a hex to decimal converter
this allows me to convert the “token_id” hex value from one of the results, but not the entire list.
i can’t find a way to convert a list of hex values to numbers. any suggestions?
