mirror of
https://github.com/logos-messaging/logos-messaging-js.git
synced 2026-02-27 11:33:18 +00:00
* add: test for multi enrtree + static multiaddr * wrap up test * rm: only * move test to optional file * dns-disc: setup default for node requirements & move to constants * chore: restructure DNS Discovery for better readability * fix: build * fix: type import * fix: test expect * rm: only * update packagelock * use new libp2p interface * fix linting errors
17 lines
565 B
TypeScript
17 lines
565 B
TypeScript
import type { NodeCapabilityCount } from "@waku/interfaces";
|
|
|
|
export const enrTree = {
|
|
TEST: "enrtree://AOGECG2SPND25EEFMAJ5WF3KSGJNSGV356DSTL2YVLLZWIV6SAYBM@test.waku.nodes.status.im",
|
|
PROD: "enrtree://AOGECG2SPND25EEFMAJ5WF3KSGJNSGV356DSTL2YVLLZWIV6SAYBM@prod.waku.nodes.status.im"
|
|
};
|
|
|
|
export const DEFAULT_BOOTSTRAP_TAG_NAME = "bootstrap";
|
|
export const DEFAULT_BOOTSTRAP_TAG_VALUE = 50;
|
|
export const DEFAULT_BOOTSTRAP_TAG_TTL = 100_000_000;
|
|
|
|
export const DEFAULT_NODE_REQUIREMENTS: Partial<NodeCapabilityCount> = {
|
|
store: 2,
|
|
filter: 1,
|
|
lightPush: 1
|
|
};
|