From 0d252085626a7bf96cb6b23792525b90a372c520 Mon Sep 17 00:00:00 2001 From: fryorcraken <110212804+fryorcraken@users.noreply.github.com> Date: Mon, 1 Dec 2025 15:32:08 +1100 Subject: [PATCH] fix: createEncoder is used from the node, not from root import (#259) --- docs/build/javascript/reliable-channels.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/docs/build/javascript/reliable-channels.md b/docs/build/javascript/reliable-channels.md index c98c7f9..78357b9 100644 --- a/docs/build/javascript/reliable-channels.md +++ b/docs/build/javascript/reliable-channels.md @@ -50,8 +50,6 @@ When the `defaultBootstrap` parameter is set to `true`, your node will be bootst Choose a [content topic](/learn/concepts/content-topics) for your application and create a message `encoder` and `decoder`: ```js -import { createEncoder, createDecoder } from "@waku/sdk"; - // Choose a content topic const ct = "/my-app/1/messages/proto"; @@ -195,4 +193,4 @@ reliableChannel.addEventListener("message-acknowledged", (event) => { :::tip Congratulations! You have successfully sent and received messages over the Waku Network using our reliable protocols such as Scalable Data Sync (SDS) and P2P Reliability. -::: \ No newline at end of file +:::