Marcel Gleeson
Marcel Gleeson
`useNamedParameters` option has been added: https://github.com/anymaniax/orval/pull/914
I also got things working similarly to how @Smona describes. I tried to package it up to make this process easier for myself in the future https://github.com/Marcel-G/waw-rs
Thanks for your support on this! > look at our [unviersal connectivity](https://github.com/libp2p/universal-connectivity) example chat app, where establish a [webRTCDirect connection on with rust server](https://github.com/libp2p/universal-connectivity/blob/main/rust-peer/src/main.rs#L65-L67) from a [browser (js) node](https://github.com/libp2p/universal-connectivity/blob/main/packages/frontend/src/lib/libp2p.ts#L103-L111) to...
Update: 1. Dial the `rust-libp2p` relay node address with `js-libp2p` 2. Relay node uses the identify protocol to advertise that it supports circuit relay, kademlia etc. 3. `js-libp2p` client consumes...
I think this issue got a little worse since https://github.com/libp2p/js-libp2p/pull/1890 Gossipsub will now not send over relayed (transient) connections and it does not use the upgraded webrtc connection as mentioned...
@justin0mcateer does that workaround involve knowing the `directPeers` peer ids and multiaddrs up-front or do you have a way of doing this dynamically?
@achingbrain I see that `runOnTransientConnection` was added to handlers, but is it somehow relevant for topologies also? It feels a little strange we would get onConnect with a connection that...