Converts a string to its hexadecimal representation.
import { stringToHex } from "thirdweb/utils";const hex = stringToHex("Hello, world!");console.log(hex); // "0x48656c6c6f2c20776f726c6421"
function stringToHex(value_: string, opts: Options): `0x${string}`;
The string to convert to hexadecimal.
let value_: string;
Options for the conversion.
let opts: Options;
let returnType: `0x${string}`;
The hexadecimal representation of the input string.