# z.tempo.AuthorizationTempo.UnsignedToRpc

Encode-only unsigned AA authorization schema accepting numberish `toRpc` inputs.

## Imports

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

z.tempo.AuthorizationTempo.UnsignedToRpc
```

## Definition

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

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