# SignatureErc6492.validate

Validates a wrapped signature. Returns `true` if the wrapped signature is valid, `false` otherwise.

## 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 valid = SignatureErc6492.validate('0xdeadbeef')
// @log: false
```

## Definition

```ts
function validate(
  wrapped: Wrapped,
): boolean
```

**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)

The wrapped signature to validate.

## Return Type

`true` if the wrapped signature is valid, `false` otherwise.

`boolean`
