toHex
toHex(
value,opts?):Hex
Encodes a string, number, bigint, or ByteArray into a hex string
Parameters
• value: string | number | bigint | boolean | Uint8Array
Value to encode.
• opts?: ToHexParameters
Options.
Returns
Hex value.
Examples
import { toHex } from 'viem'const data = toHex('Hello world')// '0x48656c6c6f20776f726c6421'import { toHex } from 'viem'const data = toHex(420)// '0x1a4'import { toHex } from 'viem'const data = toHex('Hello world', { size: 32 })// '0x48656c6c6f20776f726c64210000000000000000000000000000000000000000'Source
node_modules/.pnpm/viem@2.8.18_typescript@5.4.5_zod@3.23.8/node_modules/viem/_types/utils/encoding/toHex.d.ts:36