> **Can't find what you're looking for?** Use `search_docs` on the docs MCP server at `https://viem-d2k3terix-wevm.vercel.app/api/mcp` to find what you need.

# parseUnits

Multiplies a string representation of a number by a given exponent of base 10 (10<sup>exponent</sup>).

## Import

```ts
import { parseUnits } from 'viem'
```

## Usage

```ts
import { parseUnits } from 'viem'

parseUnits('420', 9) // [!code focus:2]
// 420000000000n
```

## Returns

`bigint`

## Parameters

### value

* **Type:** `string`

The string representation of the number to multiply.

### exponent

* **Type:** `number`

The exponent.
