mirror of
https://github.com/logos-messaging/logos-messaging-js.git
synced 2026-02-09 18:55:25 +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;
|
||
|
|
}
|
||
|
|
}
|