# z.tempo.AuthorizationTempo.Unsigned

Unsigned AA authorization schema.

## Imports

```ts
import { z } from 'ox/zod'

z.tempo.AuthorizationTempo.Unsigned
```

## Definition

```ts
export const Unsigned = z.object({
  address: z_Address.Address,
  chainId: z_Number.Number,
  nonce: z_Uint.Uint,
  signature: z.optional(z.undefined()),
})
```

**Source:** [src/zod/tempo/AuthorizationTempo.ts](https://github.com/wevm/ox/blob/main/src/zod/tempo/AuthorizationTempo.ts)
