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

# parseEther

Converts a string representation of ether to numerical wei.

## Import

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

## Usage

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

parseEther('420') // [!code focus:2]
// 420000000000000000000n
```

## Returns

`bigint`

## Parameters

### value

* **Type:** `string`

The string representation of ether.
