chore(relay-reactjs-chat): bump @waku/*

This commit is contained in:
fryorcraken.eth 2022-11-04 16:45:16 +11:00
parent 78d030a940
commit 56e5f7a0f0
No known key found for this signature in database
GPG Key ID: A82ED75A8DFC50A4
3 changed files with 649 additions and 241 deletions

View File

@ -7,7 +7,8 @@
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.3.0",
"@testing-library/user-event": "^13.5.0",
"js-waku": "0.30.0",
"@waku/core": "^0.0.6",
"@waku/create": "^0.0.4",
"protobufjs": "^7.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",

File diff suppressed because it is too large Load Diff

View File

@ -1,8 +1,8 @@
import * as React from "react";
import protobuf from "protobufjs";
import { createPrivacyNode } from "js-waku/lib/create_waku";
import { waitForRemotePeer } from "js-waku/lib/wait_for_remote_peer";
import { DecoderV0, EncoderV0 } from "js-waku/lib/waku_message/version_0";
import { createPrivacyNode } from "@waku/create";
import { waitForRemotePeer } from "@waku/core/lib/wait_for_remote_peer";
import { DecoderV0, EncoderV0 } from "@waku/core/lib/waku_message/version_0";
const ContentTopic = `/js-waku-examples/1/chat/proto`;
const Encoder = new EncoderV0(ContentTopic);