# z.tempo.ZoneRpcAuthentication.serialized

Codec decoding a serialized token into a signed Zone RPC authentication token.

## Imports

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

z.tempo.ZoneRpcAuthentication.serialized
```

## Definition

```ts
export const serialized = z.codec(Serialized, Signed, {
  decode: (value) => core_ZoneRpcAuthentication.deserialize(value),
  encode: (value) =>
    core_ZoneRpcAuthentication.serialize(
      value as core_ZoneRpcAuthentication.Signed,
    ),
})
```

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