Not able to find peers [not enough connections] #2569
Replies: 2 comments
-
I also tried starting the node in the browser with help from the @waku/react guide, it gives me the following error. The code is function App() { return ( ); } export default App; |
Beta Was this translation helpful? Give feedback.
-
Sorry this went so long without a reply - I hope you managed to find a solution to your problem. Waku's light client has it's own peer discovery mechanisms and doesn't use the standard js-libp2p ones - if they aren't working as you expect them to I would suggest asking on the Waku repo. |
Beta Was this translation helpful? Give feedback.
-
Hi,
I've been trying to start a Light node, but am unable to find any peers/connections. The following is my setup
Node: v18.0.0
@waku/sdk : 0.0.25
The following is my code
`import { createLightNode,
waitForRemotePeer,
Protocols } from "@waku/sdk";
class Waku {
constructor () {
this.node = null;
}
}
const waku = new Waku();
waku.start();
console.log("Done");`
Beta Was this translation helpful? Give feedback.
All reactions