# z.tempo.TransactionReceipt.Type

Tempo transaction receipt type schema.

## Imports

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

z.tempo.TransactionReceipt.Type
```

## Definition

```ts
export const Type = z.codec(z.string(), z.string(), {
  decode: (value) => fromRpcType[value as keyof typeof fromRpcType] ?? value,
  encode: (value) => toRpcType[value as keyof typeof toRpcType] ?? value,
})
```

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