# Authorization.toTupleList

Converts an [`Authorization.List`](/api/Authorization/types#list) to an [`Authorization.TupleList`](/api/Authorization/types#tuplelist).

## Imports

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

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

## Examples

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

const authorization_1 = Authorization.from({
  address: '0x1234567890abcdef1234567890abcdef12345678',
  chainId: 1,
  nonce: 69n
})
const authorization_2 = Authorization.from({
  address: '0x1234567890abcdef1234567890abcdef12345678',
  chainId: 3,
  nonce: 20n
})

const tuple = Authorization.toTupleList([
  authorization_1,
  authorization_2
]) // [!code focus]
// @log: [
// @log:   [
// @log:     address: '0x1234567890abcdef1234567890abcdef12345678',
// @log:     chainId: 1,
// @log:     nonce: 69n,
// @log:   ],
// @log:   [
// @log:     address: '0x1234567890abcdef1234567890abcdef12345678',
// @log:     chainId: 3,
// @log:     nonce: 20n,
// @log:   ],
// @log: ]
```

## Definition

```ts
function toTupleList<list>(
  list?: list,
): toTupleList.ReturnType<list>
```

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

## Parameters

### list

* **Type:** `list`
* **Optional**

An [`Authorization.List`](/api/Authorization/types#list).

## Return Type

An [EIP-7702](https://eips.ethereum.org/EIPS/eip-7702) Authorization tuple list.

`toTupleList.ReturnType<list>`
