From 35e3c1db9b5659396d82d3e07688ffb0fde9cbb4 Mon Sep 17 00:00:00 2001 From: Sasha Date: Fri, 23 Jun 2023 22:17:51 +0200 Subject: [PATCH] remove utils package --- examples/web-chat/package-lock.json | 1 - examples/web-chat/package.json | 1 - examples/web-chat/src/chat_message.ts | 2 +- 3 files changed, 1 insertion(+), 3 deletions(-) diff --git a/examples/web-chat/package-lock.json b/examples/web-chat/package-lock.json index 773f2f7..8f5a432 100644 --- a/examples/web-chat/package-lock.json +++ b/examples/web-chat/package-lock.json @@ -11,7 +11,6 @@ "@libp2p/bootstrap": "^5.0.0", "@livechat/ui-kit": "^0.5.0-24", "@multiformats/multiaddr": "11.0.7", - "@waku/byte-utils": "^0.0.2", "@waku/dns-discovery": "0.0.5", "@waku/interfaces": "^0.0.15", "@waku/peer-exchange": "^0.0.3", diff --git a/examples/web-chat/package.json b/examples/web-chat/package.json index 6ae9a61..dce8fdd 100644 --- a/examples/web-chat/package.json +++ b/examples/web-chat/package.json @@ -8,7 +8,6 @@ "@livechat/ui-kit": "^0.5.0-24", "@multiformats/multiaddr": "11.0.7", "@waku/react": "0.0.1-b", - "@waku/byte-utils": "^0.0.2", "@waku/sdk": "^0.0.16", "@waku/dns-discovery": "0.0.5", "@waku/interfaces": "^0.0.15", diff --git a/examples/web-chat/src/chat_message.ts b/examples/web-chat/src/chat_message.ts index 1039e2e..3b977fd 100644 --- a/examples/web-chat/src/chat_message.ts +++ b/examples/web-chat/src/chat_message.ts @@ -1,4 +1,4 @@ -import { utf8ToBytes, bytesToUtf8 } from "@waku/byte-utils"; +import { utf8ToBytes, bytesToUtf8 } from "@waku/sdk"; import * as proto from "./proto/chat_message"; /**