Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: update waku deps #261

Merged
merged 12 commits into from
Aug 7, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3,509 changes: 1,663 additions & 1,846 deletions examples/eth-pm/package-lock.json

Large diffs are not rendered by default.

34 changes: 17 additions & 17 deletions examples/eth-pm/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,22 +3,6 @@
"version": "0.1.0",
"private": true,
"homepage": "/eth-pm",
"dependencies": {
"@ethersproject/abstract-signer": "5.7.0",
"@ethersproject/providers": "5.7.0",
"@material-ui/core": "^4.12.4",
"@material-ui/icons": "^4.11.3",
"@waku/sdk": "^0.0.16",
"@waku/interfaces": "^0.0.15",
"@waku/message-encryption": "^0.0.18",
"@waku/utils": "0.0.8",
"ethers": "5.7.1",
"fontsource-roboto": "^4.0.0",
"protobufjs": "^7.1.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"uint8arrays": "^4.0.2"
},
"scripts": {
"start": "GENERATE_SOURCEMAP=false PORT=3004 craco start",
"build": "GENERATE_SOURCEMAP=false craco build",
Expand Down Expand Up @@ -53,8 +37,24 @@
"overrides": {
"react-refresh": "0.14.0"
},
"dependencies": {
"@ethersproject/abstract-signer": "5.7.0",
"@ethersproject/providers": "5.7.0",
"@material-ui/core": "^4.12.4",
"@material-ui/icons": "^4.11.3",
"@waku/interfaces": "^0.0.17",
"@waku/message-encryption": "^0.0.20",
"@waku/sdk": "^0.0.18",
"@waku/utils": "0.0.10",
"ethers": "5.7.1",
"fontsource-roboto": "^4.0.0",
"protobufjs": "^7.1.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"uint8arrays": "^4.0.2"
},
"devDependencies": {
"@craco/craco": "^6.4.5",
"@craco/craco": "^7.0.0",
"@ethersproject/shims": "^5.7.0",
"@types/jest": "^27.5.2",
"@types/node": "^17.0.45",
Expand Down
2 changes: 1 addition & 1 deletion examples/light-chat/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import {
waitForRemotePeer,
createDecoder,
createEncoder,
} from "https://unpkg.com/@waku/[email protected].16/bundle/index.js";
} from "https://unpkg.com/@waku/[email protected].18/bundle/index.js";

const CONTENT_TOPIC = "/toy-chat/2/huilong/proto";

Expand Down
4 changes: 2 additions & 2 deletions examples/light-js/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -45,11 +45,11 @@
createDecoder,
utf8ToBytes,
bytesToUtf8,
} from "https://unpkg.com/@waku/[email protected].16/bundle/index.js";
} from "https://unpkg.com/@waku/[email protected].18/bundle/index.js";
import {
enrTree,
DnsNodeDiscovery,
} from "https://unpkg.com/@waku/[email protected].14/bundle/index.js";
} from "https://unpkg.com/@waku/[email protected].16/bundle/index.js";

const peerIdDiv = document.getElementById("peer-id");
const remotePeerIdDiv = document.getElementById("remote-peer-id");
Expand Down
Loading