mirror of
https://github.com/logos-messaging/js-waku.git
synced 2026-02-21 06:13:08 +00:00
16 lines
334 B
TypeScript
16 lines
334 B
TypeScript
|
|
import { IBaseProtocolSDK } from "..";
|
||
|
|
|
||
|
|
interface Options {
|
||
|
|
numPeersToUse?: number;
|
||
|
|
}
|
||
|
|
|
||
|
|
const DEFAULT_NUM_PEERS_TO_USE = 3;
|
||
|
|
|
||
|
|
export class BaseProtocolSDK implements IBaseProtocolSDK {
|
||
|
|
public readonly numPeers: number;
|
||
|
|
|
||
|
|
constructor(options: Options) {
|
||
|
|
this.numPeers = options?.numPeersToUse ?? DEFAULT_NUM_PEERS_TO_USE;
|
||
|
|
}
|
||
|
|
}
|