# Bal.addresses

Returns the accounts a list covers, in the order it carries them.

## Imports

:::code-group
```ts [Named]
import { Bal } from 'ox/evm'
```

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

## Examples

```ts twoslash
// @noErrors
import { Bal } from 'ox/evm'

Bal.addresses(bal)
// @log: ['0x…', '0x…']
```

## Definition

```ts
function addresses(
  bal: Bal,
): readonly `0x${string}`[]
```

**Source:** [src/evm/Bal.ts](https://github.com/wevm/ox/blob/main/src/evm/Bal.ts#L41)

## Parameters

### bal

* **Type:** `Bal`

List to read.

## Return Type

Each covered address.

`readonly `0x${string}`[]`
