# Hex.toBigInt

Decodes a [`Hex.Hex`](/api/Hex/types#hex) value into a BigInt.

## Imports

:::code-group
```ts [Named]
import { Hex } from 'ox'
```

```ts [Entrypoint]
import * as Hex from 'ox/Hex'
```
:::

## Examples

```ts twoslash
import { Hex } from 'ox'

Hex.toBigInt('0x1a4')
// @log: 420n

Hex.toBigInt(
  '0x00000000000000000000000000000000000000000000000000000000000001a4',
  { size: 32 }
)
// @log: 420n
```

## Definition

```ts
function toBigInt(
  hex: Hex,
  options?: toBigInt.Options,
): bigint
```

**Source:** [src/core/Hex.ts](https://github.com/wevm/ox/blob/main/src/core/Hex.ts#L1003)

## Parameters

### hex

* **Type:** `Hex`

The [`Hex.Hex`](/api/Hex/types#hex) value to decode.

### options

* **Type:** `toBigInt.Options`
* **Optional**

Options.

#### options.signed

* **Type:** `boolean`
* **Optional**

Whether or not the number of a signed representation.

#### options.size

* **Type:** `number`
* **Optional**

Size (in bytes) of the hex value.

## Return Type

The decoded BigInt.

`bigint`
