mirror of
https://github.com/logos-messaging/logos-delivery-js.git
synced 2026-03-14 05:33:07 +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
26 lines
917 B
TypeScript
26 lines
917 B
TypeScript
export { createEncoder, createDecoder } from "./lib/message/version_0.js";
|
|
export type {
|
|
Encoder,
|
|
Decoder,
|
|
DecodedMessage
|
|
} from "./lib/message/version_0.js";
|
|
export * as message from "./lib/message/index.js";
|
|
|
|
export * as waku_filter from "./lib/filter/index.js";
|
|
export { FilterCore, FilterCodecs } from "./lib/filter/index.js";
|
|
|
|
export * as waku_light_push from "./lib/light_push/index.js";
|
|
export { LightPushCodec, LightPushCore } from "./lib/light_push/index.js";
|
|
|
|
export * as waku_store from "./lib/store/index.js";
|
|
export { StoreCore, StoreCodec } from "./lib/store/index.js";
|
|
|
|
export { ConnectionManager } from "./lib/connection_manager.js";
|
|
|
|
export { getHealthManager } from "./lib/health_manager.js";
|
|
|
|
export { KeepAliveManager } from "./lib/keep_alive_manager.js";
|
|
export { StreamManager } from "./lib/stream_manager/index.js";
|
|
|
|
export { MetadataCodec, wakuMetadata } from "./lib/metadata/index.js";
|