Skip to main content

numFromBytes

@ckb-ccc/coreDocs


@ckb-ccc/core / ccc / numFromBytes

Function: numFromBytes()

numFromBytes(val): Num

Converts a byte array to a Num (bigint) assuming little-endian order.

Parameters

val: BytesLike

The byte array to convert.

Returns

Num

A Num (bigint) representing the numeric value.

Example

const num = numFromBytes(new Uint8Array([57, 48, 0, 0])); // Outputs 12345n

Source

num/index.ts:122