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

# AccessList.fromTupleList

:::info
`AccessList.fromTupleList` is a re-export of ox's [`AccessList.fromTupleList`](https://oxlib.sh/api/AccessList/fromTupleList). Refer to the ox documentation for the full reference.
:::

Converts a list of Access List tuples into a object-formatted list.

## Imports

```ts
import { AccessList } from 'viem/utils'
```

## Examples

```ts twoslash
// @noErrors
import { AccessList } from 'viem/utils'

const accessList = AccessList.fromTupleList([
  [
    '0x0000000000000000000000000000000000000000',
    [
      '0x0000000000000000000000000000000000000000000000000000000000000001',
      '0x60fdd29ff912ce880cd3edaf9f932dc61d3dae823ea77e0323f94adb9f6a72fe'
    ]
  ]
])
// @log: [
// @log:   {
// @log:     address: '0x0000000000000000000000000000000000000000',
// @log:     storageKeys: [
// @log:       '0x0000000000000000000000000000000000000000000000000000000000000001',
// @log:       '0x60fdd29ff912ce880cd3edaf9f932dc61d3dae823ea77e0323f94adb9f6a72fe',
// @log:     ],
// @log:   },
// @log: ]
```

## Definition

```ts
function fromTupleList(
  accessList: AccessList.Tuple,
): AccessList
```

## Parameters

### accessList

* **Type:** [`AccessList.Tuple`](/docs/utilities/accesslist/types#accesslisttuple)

List of tuples.

## Return Type

Access list.

`AccessList`
