chore(store-js): bump @waku/core to 0.0.7

This commit is contained in:
fryorcraken.eth 2022-12-16 13:00:22 +11:00
parent 7cb97ae71c
commit 4dc0fc71d7
No known key found for this signature in database
GPG Key ID: A82ED75A8DFC50A4
1 changed files with 5 additions and 5 deletions

View File

@ -14,13 +14,13 @@
import {
defaultLibp2p,
defaultPeerDiscovery,
} from "https://unpkg.com/@waku/create@0.0.4/bundle/index.js";
import { waitForRemotePeer } from "https://unpkg.com/@waku/core@0.0.6/bundle/lib/wait_for_remote_peer.js";
} from "https://unpkg.com/@waku/create@0.0.5/bundle/index.js";
import {
wakuStore,
WakuNode,
} from "https://unpkg.com/@waku/core@0.0.6/bundle/index.js";
import { DecoderV0 } from "https://unpkg.com/@waku/core@0.0.6/bundle/lib/waku_message/version_0.js";
waitForRemotePeer,
createDecoder,
} from "https://unpkg.com/@waku/core@0.0.7/bundle/index.js";
/**
* This example demonstrates how to use the js-waku minified bundle
@ -56,7 +56,7 @@
};
await node.store.queryOrderedCallback(
[new DecoderV0("/relay-ping/1/ping/null")],
[createDecoder("/relay-ping/1/ping/null")],
callback,
{ pageDirection: "backward" }
);