# RpcSchema Types

## `RpcSchema.Bundler`

Union of all JSON-RPC Methods for ERC-4337 Bundlers.

### Examples

```ts twoslash
// @noErrors
import { RpcSchema } from 'ox'

type Schema = RpcSchema.Bundler
//   ^?
```

**Source:** [src/erc4337/RpcSchema.ts](https://github.com/wevm/ox/blob/main/src/erc4337/RpcSchema.ts#L162)

## `RpcSchema.BundlerDebug`

Union of all JSON-RPC Methods for the debug methods of ERC-4337 Bundlers.

### Examples

```ts twoslash
// @noErrors
import { RpcSchema } from 'ox'

type Schema = RpcSchema.BundlerDebug
//   ^?
```

**Source:** [src/erc4337/RpcSchema.ts](https://github.com/wevm/ox/blob/main/src/erc4337/RpcSchema.ts#L162)
