Skip to content

hexToBool

hexToBool(hex_, opts?): boolean

Decodes a hex value into a boolean.

Parameters

hex_: `0x${string}`

opts?: HexToBoolOpts

Options.

Returns

boolean

Boolean value.

Examples

import { hexToBool } from 'viem'
const data = hexToBool('0x01')
// true
import { hexToBool } from 'viem'
const data = hexToBool('0x0000000000000000000000000000000000000000000000000000000000000001', { size: 32 })
// true

Defined in

node_modules/.pnpm/viem@2.14.2_bufferutil@4.0.8_typescript@5.5.2_utf-8-validate@6.0.4_zod@3.23.8/node_modules/viem/_types/utils/encoding/fromHex.d.ts:99