This commit is contained in:
Sasha 2025-04-18 16:35:15 +02:00
parent 1d9010f059
commit b73f263719
No known key found for this signature in database

View File

@ -58,12 +58,17 @@ async function wakuNode(): Promise<LightNode> {
}, },
}); });
(window as any).waku = node;
await node.dial("/dns4/waku-test.bloxy.one/tcp/8095/wss/p2p/16Uiu2HAmSZbDB7CusdRhgkD81VssRjQV5ZH13FbzCGcdnbbh6VwZ");
await node.dial("/dns4/vps-aaa00d52.vps.ovh.ca/tcp/8000/wss/p2p/16Uiu2HAm9PftGgHZwWE3wzdMde4m3kT2eYJFXLZfGoSED3gysofk");
await node.dial("/dns4/waku.fryorcraken.xyz/tcp/8000/wss/p2p/16Uiu2HAmMRvhDHrtiHft1FTUYnn6cVA8AWVrTyLUayJJ3MWpUZDB");
return node; return node;
} }
export async function app(telemetryClient: TelemetryClient) { export async function app(telemetryClient: TelemetryClient) {
const node = await wakuNode(); const node = await wakuNode();
(window as any).waku = node;
console.log("DEBUG: your peer ID is:", node.libp2p.peerId.toString()); console.log("DEBUG: your peer ID is:", node.libp2p.peerId.toString());