Skip to content

boolToBytes

boolToBytes(value, opts?): Uint8Array

Encodes a boolean into a byte array.

Parameters

value: boolean

Boolean value to encode.

opts?: BoolToBytesOpts

Options.

Returns

Uint8Array

Byte array value.

Examples

import { boolToBytes } from 'viem'
const data = boolToBytes(true)
// Uint8Array([1])
import { boolToBytes } from 'viem'
const data = boolToBytes(true, { size: 32 })
// Uint8Array([0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1])

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/toBytes.d.ts:62