# SignatureErc6492.unwrap

Parses an [ERC-6492 wrapped signature](https://eips.ethereum.org/EIPS/eip-6492#specification) into its constituent parts.

## Imports

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

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

## Examples

```ts twoslash
import { SignatureErc6492 } from 'ox/erc6492'

const { data, signature, to } =
  SignatureErc6492.unwrap('0x...')
```

## Definition

```ts
function unwrap(
  wrapped: Wrapped,
): Unwrapped
```

**Source:** [src/erc6492/SignatureErc6492.ts](https://github.com/wevm/ox/blob/main/src/erc6492/SignatureErc6492.ts#L291)

## Parameters

### wrapped

* **Type:** [`Wrapped`](/ercs/erc6492/SignatureErc6492/types#signatureerc6492wrapped)

Wrapped signature to parse.

## Return Type

Wrapped signature.

[`Unwrapped`](/ercs/erc6492/SignatureErc6492/types#signatureerc6492unwrapped)
