/** True when a JSON-RPC call failed because the backend predates the method. */ export function isMissingRpcMethod(error: unknown): boolean { const message = error instanceof Error ? error.message : String(error) return /method not found|-32601|unknown method|no such method/i.test(message) }