@waku/sdk
Version:
A unified SDK for easy creation and management of js-waku nodes.
8 lines (7 loc) • 337 B
TypeScript
import type { CreateNodeOptions, LightNode } from "@waku/interfaces";
/**
* Create a Waku node that uses Waku Light Push, Filter and Store to send and
* receive messages, enabling low resource consumption.
* Uses Waku Filter V2 by default.
*/
export declare function createLightNode(options?: CreateNodeOptions): Promise<LightNode>;