Daniel Schmitz

Results 45 comments of Daniel Schmitz

Do you think you could add support for this?

Yeah I now also get type errors. I extend the UserSession type interface UserSession { challenge: string } but since getUserSession is not returning the type anymore I get type...

The issue arises because the official JSON-RPC client library, [@open-rpc/client-js](https://github.com/open-rpc/client-js), does not handle WebSocket binary frames in the browser environment. This library is widely used and adheres strictly to the...

The **JSON-RPC 2.0 specification** does not explicitly state that the transport stream (e.g., WebSocket or HTTP) must send data as JSON text or that it cannot use binary formats. However,...

> Ah, there's this issue: [open-rpc/client-js#346](https://github.com/open-rpc/client-js/issues/346). Its from me. I am also part of the google group for json-rpc where I also asked to make sure I am correct that...

Right now I am checking other client and server implementations in different languages to see if they strictly send it as text. I checked two server implementations so far and...

> Not sure if this is LLM-generated text, but it looks super long form for something that could be said in a lot fewer words. > > > The issue...

Threads from new members need to be approved. I need to check at home if it has already been posted. Will share as soon I get the thread/response.

ETHs json rpc api for example sends the stream data as json text as you can see in this client implementation: https://github.com/wevm/viem/blob/main/src/utils/rpc/webSocket.ts How many proofs will proof to you that...

So far, I haven't come across a single JavaScript JSON-RPC 2.0 client/server library (with WebSocket support) that can send or expect a binary response. You might also want to explore...