mirror of
https://github.com/logos-messaging/js-waku.git
synced 2026-01-02 22:03:07 +00:00
* update local peer discovery, make it configurable for cache * move to separate file * up tests, remove local storage from tests * pass local peer cache options * add e2e tests * add aditional e2e tests for local cache * rename local-peer-cache into peer-cache * update tests, ci * prevent filterign ws addresses
66 lines
1.7 KiB
JavaScript
66 lines
1.7 KiB
JavaScript
module.exports = [
|
|
{
|
|
name: "Waku node",
|
|
path: "packages/sdk/bundle/index.js",
|
|
import: "{ WakuNode }",
|
|
},
|
|
{
|
|
name: "Waku Simple Light Node",
|
|
path: ["packages/sdk/bundle/index.js", "packages/core/bundle/index.js"],
|
|
import: {
|
|
"packages/sdk/bundle/index.js":
|
|
"{ createLightNode, createEncoder, createDecoder, bytesToUtf8, utf8ToBytes, Decoder, Encoder, DecodedMessage, WakuNode }",
|
|
},
|
|
},
|
|
{
|
|
name: "ECIES encryption",
|
|
path: "packages/message-encryption/bundle/ecies.js",
|
|
import: "{ generatePrivateKey, createEncoder, createDecoder }",
|
|
},
|
|
{
|
|
name: "Symmetric encryption",
|
|
path: "packages/message-encryption/bundle/symmetric.js",
|
|
import: "{ generateSymmetricKey, createEncoder, createDecoder }",
|
|
},
|
|
{
|
|
name: "DNS discovery",
|
|
path: "packages/discovery/bundle/index.js",
|
|
import: "{ PeerDiscoveryDns }",
|
|
},
|
|
{
|
|
name: "Peer Exchange discovery",
|
|
path: "packages/discovery/bundle/index.js",
|
|
import: "{ wakuPeerExchangeDiscovery }",
|
|
},
|
|
{
|
|
name: "Peer Cache Discovery",
|
|
path: "packages/discovery/bundle/index.js",
|
|
import: "{ wakuPeerCacheDiscovery }",
|
|
},
|
|
{
|
|
name: "Privacy preserving protocols",
|
|
path: "packages/relay/bundle/index.js",
|
|
import: "{ Relay }",
|
|
},
|
|
{
|
|
name: "Waku Filter",
|
|
path: "packages/sdk/bundle/index.js",
|
|
import: "{ Filter }",
|
|
},
|
|
{
|
|
name: "Waku LightPush",
|
|
path: "packages/sdk/bundle/index.js",
|
|
import: "{ LightPush }",
|
|
},
|
|
{
|
|
name: "History retrieval protocols",
|
|
path: "packages/sdk/bundle/index.js",
|
|
import: "{ Store }",
|
|
},
|
|
{
|
|
name: "Deterministic Message Hashing",
|
|
path: ["packages/core/bundle/index.js"],
|
|
import: "{ messageHash }",
|
|
},
|
|
];
|