diff --git a/examples/waku-node/index.mjs b/examples/waku-node/index.mjs index 7f330a9a2a..2d299a60d4 100644 --- a/examples/waku-node/index.mjs +++ b/examples/waku-node/index.mjs @@ -16,7 +16,7 @@ import WebRTCDirect from 'libp2p-webrtc-direct'; libp2p: { peerId: hardcodedPeerId, addresses: { - listen: ['/ip4/127.0.0.1/tcp/9090/http/p2p-webrtc-direct'] + listen: ['/ip4/0.0.0.0/tcp/9090/http/p2p-webrtc-direct'] }, modules: { transport: [WebRTCDirect] diff --git a/examples/web-chat/src/App.tsx b/examples/web-chat/src/App.tsx index 1cf3cf0d86..5313b2368d 100644 --- a/examples/web-chat/src/App.tsx +++ b/examples/web-chat/src/App.tsx @@ -180,7 +180,7 @@ async function initWaku(setter: (waku: Waku) => void) { }, bootstrap: { peers: [ - `/ip4/127.0.0.1/tcp/9090/http/p2p-webrtc-direct/p2p/12D3KooWCuo3MdXfMgaqpLC5Houi1TRoFqgK9aoxok4NK5udMu8m`, + `/dns4/waku.fryorcraken.xyz/tcp/9090/http/p2p-webrtc-direct/p2p/12D3KooWCuo3MdXfMgaqpLC5Houi1TRoFqgK9aoxok4NK5udMu8m`, ], }, });