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 73f9876 commit aa8d39eCopy full SHA for aa8d39e
examples/dogfooding/src/index.ts
@@ -77,7 +77,7 @@ async function initializeApp() {
77
const subscribeToMessages = async () => {
78
const decoder = createWakuDecoder();
79
console.log("Subscribing to messages...");
80
- await node.filter.subscribe(decoder, (wakuMessage: DecodedMessage) => {
+ await node.nextFilter.subscribe(decoder, (wakuMessage: DecodedMessage) => {
81
console.log("Raw Waku message received, payload length:", wakuMessage.payload.length);
82
const chatMessage = decodeMessage(wakuMessage.payload);
83
examples/dogfooding/src/util.ts
0 commit comments