I know it has been asked a lot of times but the newest post about this I could find was about 1 year old. To me it seems quite possible that things have changed since then. So my question: Is there an easy way to convert bytes8/16/32 to a String value?
Here is the problem I face right now. Contract A takes one user-input per transaction as a bytes8/16/32 variable. The contract passes it to Contract B and stores it there. My getter function in Contract B returns this Bytes8/16/32 variable. So Contract A calls the getter-function of B if needed and successfully gets the bytes variable back. Now I simply want to turn it back to a readable string and put it on screen in a decoded way :) Somebody has an idea? Many thanks!