# z.Fee.FeeValuesEip4844

EIP-4844 RPC fee values schema decoded to EIP-4844 fee values.

## Imports

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

z.Fee.FeeValuesEip4844
```

## Definition

```ts
export const FeeValuesEip4844 = z.object({
  maxFeePerBlobGas: z_Uint.Uint,
  maxFeePerGas: z_Uint.Uint,
  maxPriorityFeePerGas: z_Uint.Uint,
})
```

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