mirror of
https://github.com/logos-messaging/logos-messaging-js.git
synced 2026-01-20 08:53:08 +00:00
* chore: switch from decomissioned wakuv2 fleet * chore: minor fixes + CI * chore: fix eslint * fix: eslint * chore: fix test --------- Co-authored-by: danisharora099 <danisharora099@gmail.com>
18 lines
575 B
TypeScript
18 lines
575 B
TypeScript
import type { NodeCapabilityCount } from "@waku/interfaces";
|
|
|
|
export const enrTree = {
|
|
TEST: "enrtree://AOGYWMBYOUIMOENHXCHILPKY3ZRFEULMFI4DOM442QSZ73TT2A7VI@test.waku.nodes.status.im",
|
|
SANDBOX:
|
|
"enrtree://AIRVQ5DDA4FFWLRBCHJWUWOO6X6S4ZTZ5B667LQ6AJU6PEYDLRD5O@sandbox.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
|
|
};
|