import type { RpcSchema } from 'ox' /** * Ox-compatible JSON-RPC schema union used to type the relay handler's incoming * requests (`RpcRequest.RpcRequest`). The relay switches on `request.method` * string literals and casts params per method, so a permissive schema whose * `params` is an array is sufficient — the full method-by-method schema union * from the accounts SDK is not needed here. */ export type Ox = RpcSchema.Generic