We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3fa8743 commit d408155Copy full SHA for d408155
index.html
@@ -755,6 +755,15 @@
755
this.node = await createLightNode({ defaultBootstrap: true });
756
await this.node.start();
757
758
+ // Dial the specific node
759
+ const multiAddrWithId = '/dns4/waku.fryorcraken.xyz/tcp/8000/wss/p2p/16Uiu2HAmMRvhDHrtiHft1FTUYnn6cVA8AWVrTyLUayJJ3MWpUZDB';
760
+ try {
761
+ await this.node.dial(multiAddrWithId);
762
+ console.log('Successfully dialed custom Waku node');
763
+ } catch (dialError) {
764
+ console.warn('Failed to dial custom node:', dialError);
765
+ }
766
+
767
this.updateStatus('Waiting for peers...', 'connecting');
768
769
// Wait for connection to remote peers
0 commit comments