mirror of
https://github.com/logos-messaging/logos-delivery-js.git
synced 2026-05-17 12:59:50 +00:00
* initialise the new package * move dns-discovery * move peer-exchange * move local-peer-cache-discovery * add polyfill for node - dynamic import * update size-limit * update release-please * chore: update pacakge desc * chore: cleanup * add peer-exchange and local peer cache to size-limit
17 lines
569 B
TypeScript
17 lines
569 B
TypeScript
import type { NodeCapabilityCount } from "@waku/interfaces";
|
|
|
|
export const enrTree = {
|
|
TEST: "enrtree://AO47IDOLBKH72HIZZOXQP6NMRESAN7CHYWIBNXDXWRJRZWLODKII6@test.wakuv2.nodes.status.im",
|
|
PROD: "enrtree://ANEDLO25QVUGJOUTQFRYKWX6P4Z4GKVESBMHML7DZ6YK4LGS5FC5O@prod.wakuv2.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
|
|
};
|