mirror of
https://github.com/logos-messaging/js-waku.git
synced 2026-01-10 01:33:13 +00:00
* fix comment of default number of peers * export default number of peers from base protocol sdk * rename to light_push, move class to separate file * move waitForRemotePeer to sdk package * add todo to move waitForGossipSubPeerInMesh into @waku/relay * clean up waitForRemotePeer, split metadata await from event and optimise, decouple from protocol implementations * simplify and rename ILightPush interface * use only connected peers in light push based on connections instead of peer renewal mechanism * improve readability of result processing in light push * fix check & update tests * address tests, add new test cases, fix racing condition in StreamManager * use libp2p.getPeers * feat: confirm metadata and protocols needed in waitForRemotePeer * rely on passed protocols and fallback to mounted * add I prefix to Waku interface * implement waku.connect method * add docs to IWaku interface * remove export and usage of waitForRemotePeer * move wait for remote peer related to Realy out of @waku/sdk * change tests to use new API * fix linting * update size limit * rename .connect to .waitForPeer * export waitForRemotePeer and mark as deprecated * feat: add mocha tests to @waku/sdk and cover waitForRemotePeer (#2163) * feat: add mocha tests to @waku/sdk and cover waitForRemotePeer * add waitForRemote UTs * remove junk * feat: expose peerId and protocols from WakuNode (#2166) * chore: expose peerId and protocols from WakuNode * remove unused method * move to private method * rename to waitForPeers * up test
113 lines
3.1 KiB
TypeScript
113 lines
3.1 KiB
TypeScript
import { noise } from "@chainsafe/libp2p-noise";
|
|
import { bootstrap } from "@libp2p/bootstrap";
|
|
import { identify } from "@libp2p/identify";
|
|
import { mplex } from "@libp2p/mplex";
|
|
import { ping } from "@libp2p/ping";
|
|
import { webSockets } from "@libp2p/websockets";
|
|
import { all as filterAll, wss } from "@libp2p/websockets/filters";
|
|
import { wakuMetadata } from "@waku/core";
|
|
import {
|
|
type CreateLibp2pOptions,
|
|
DefaultNetworkConfig,
|
|
type IMetadata,
|
|
type Libp2p,
|
|
type Libp2pComponents,
|
|
PubsubTopic
|
|
} from "@waku/interfaces";
|
|
import { derivePubsubTopicsFromNetworkConfig, Logger } from "@waku/utils";
|
|
import { createLibp2p } from "libp2p";
|
|
|
|
import {
|
|
CreateWakuNodeOptions,
|
|
DefaultPingMaxInboundStreams,
|
|
DefaultUserAgent
|
|
} from "../waku/index.js";
|
|
|
|
import { defaultPeerDiscoveries } from "./discovery.js";
|
|
|
|
type MetadataService = {
|
|
metadata?: (components: Libp2pComponents) => IMetadata;
|
|
};
|
|
|
|
const log = new Logger("sdk:create");
|
|
|
|
export async function defaultLibp2p(
|
|
pubsubTopics: PubsubTopic[],
|
|
options?: Partial<CreateLibp2pOptions>,
|
|
userAgent?: string
|
|
): Promise<Libp2p> {
|
|
if (!options?.hideWebSocketInfo && process?.env?.NODE_ENV !== "test") {
|
|
/* eslint-disable no-console */
|
|
console.info(
|
|
"%cIgnore WebSocket connection failures",
|
|
"background: gray; color: white; font-size: x-large"
|
|
);
|
|
console.info(
|
|
"%cWaku tries to discover peers and some of them are expected to fail",
|
|
"background: gray; color: white; font-size: x-large"
|
|
);
|
|
/* eslint-enable no-console */
|
|
}
|
|
|
|
const metadataService: MetadataService = pubsubTopics
|
|
? { metadata: wakuMetadata(pubsubTopics) }
|
|
: {};
|
|
|
|
const filter =
|
|
options?.filterMultiaddrs === false || process?.env?.NODE_ENV === "test"
|
|
? filterAll
|
|
: wss;
|
|
|
|
return createLibp2p({
|
|
connectionManager: {
|
|
minConnections: 1
|
|
},
|
|
transports: [webSockets({ filter: filter })],
|
|
streamMuxers: [mplex()],
|
|
connectionEncryption: [noise()],
|
|
...options,
|
|
services: {
|
|
identify: identify({
|
|
agentVersion: userAgent ?? DefaultUserAgent
|
|
}),
|
|
ping: ping({
|
|
maxInboundStreams:
|
|
options?.pingMaxInboundStreams ?? DefaultPingMaxInboundStreams
|
|
}),
|
|
...metadataService,
|
|
...options?.services
|
|
}
|
|
}) as any as Libp2p; // TODO: make libp2p include it;
|
|
}
|
|
|
|
export async function createLibp2pAndUpdateOptions(
|
|
options: CreateWakuNodeOptions
|
|
): Promise<{ libp2p: Libp2p; pubsubTopics: PubsubTopic[] }> {
|
|
const { networkConfig } = options;
|
|
const pubsubTopics = derivePubsubTopicsFromNetworkConfig(
|
|
networkConfig ?? DefaultNetworkConfig
|
|
);
|
|
log.info("Creating Waku node with pubsub topics", pubsubTopics);
|
|
|
|
const libp2pOptions = options?.libp2p ?? {};
|
|
const peerDiscovery = libp2pOptions.peerDiscovery ?? [];
|
|
|
|
if (options?.defaultBootstrap) {
|
|
peerDiscovery.push(...defaultPeerDiscoveries(pubsubTopics));
|
|
}
|
|
|
|
if (options?.bootstrapPeers) {
|
|
peerDiscovery.push(bootstrap({ list: options.bootstrapPeers }));
|
|
}
|
|
|
|
libp2pOptions.peerDiscovery = peerDiscovery;
|
|
|
|
const libp2p = await defaultLibp2p(
|
|
pubsubTopics,
|
|
libp2pOptions,
|
|
options?.userAgent
|
|
);
|
|
|
|
return { libp2p, pubsubTopics };
|
|
}
|