Converts a Uint8List into a hex String.
String bufferToHex(Uint8List buf) { return '0x${hex.encode(buf)}'; }