@waku/sdk
Version:
A unified SDK for easy creation and management of js-waku nodes.
4 lines (3 loc) • 351 B
TypeScript
import { type ClusterId, type CreateLibp2pOptions, type CreateNodeOptions, type Libp2p } from "@waku/interfaces";
export declare function defaultLibp2p(clusterId: ClusterId, options?: Partial<CreateLibp2pOptions>, userAgent?: string): Promise<Libp2p>;
export declare function createLibp2pAndUpdateOptions(options: CreateNodeOptions): Promise<Libp2p>;