Skip to content

Commit

Permalink
chore: use rc in dogfooding app (#98)
Browse files Browse the repository at this point in the history
  • Loading branch information
weboko authored Oct 1, 2024
1 parent 7f1393f commit 7c522a5
Show file tree
Hide file tree
Showing 3 changed files with 46 additions and 46 deletions.
88 changes: 44 additions & 44 deletions examples/dogfooding/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion examples/dogfooding/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"@libp2p/crypto": "^4.0.1",
"@libp2p/peer-id-factory": "^4.2.4",
"@multiformats/multiaddr": "^12.3.1",
"@waku/sdk": "0.0.28",
"@waku/sdk": "0.0.29-b93134a.0",
"libp2p": "^1.8.3",
"protobufjs": "^7.3.0",
"uint8arrays": "^5.1.0"
Expand Down
2 changes: 1 addition & 1 deletion examples/dogfooding/src/util.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export const sha256 = async (number: number | string ): Promise<string> => {
.join("");
};

const DEFAULT_EXTRA_DATA = { sdk: "0.0.28" };
const DEFAULT_EXTRA_DATA = { sdk: "0.0.29" };
export const DEFAULT_EXTRA_DATA_STR = JSON.stringify(DEFAULT_EXTRA_DATA);

export const buildExtraData = async (node: LightNode, peerId: string): Promise<string> => {
Expand Down

0 comments on commit 7c522a5

Please sign in to comment.