# z.TxEnvelopeEip8141.Decoded

Decoded EIP-8141 envelope schema.

## Imports

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

z.TxEnvelopeEip8141.Decoded
```

## Definition

```ts
export const Decoded = z
  .object(
    fields(z.bigint(), z.union([z.number(), z.bigint()]), z_Frame.Decoded),
  )
  .check(z.refine(core_TxEnvelopeEip8141.validate, 'Invalid frame transaction'))
```

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