# z.Fee.FeeValuesEip1559

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

## Imports

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

z.Fee.FeeValuesEip1559
```

## Definition

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

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