Skip to content

bytesToNumber

bytesToNumber(bytes, opts?): number

Decodes a byte array into a number.

Parameters

bytes: Uint8Array

Byte array to decode.

opts?: BytesToBigIntOpts

Options.

Returns

number

Number value.

Example

import { bytesToNumber } from 'viem'
const data = bytesToNumber(new Uint8Array([1, 164]))
// 420

Source

node_modules/.pnpm/viem@2.8.18_typescript@5.4.5_zod@3.23.8/node_modules/viem/_types/utils/encoding/fromBytes.d.ts:96