mirror of https://github.com/waku-org/waku-lab.git
move config
This commit is contained in:
parent
3d063e7540
commit
3e58ddd611
|
@ -1,8 +0,0 @@
|
|||
import { type CreateWakuNodeOptions } from "@waku/sdk";
|
||||
|
||||
export const WAKU_NODE_OPTIONS: CreateWakuNodeOptions = {
|
||||
defaultBootstrap: true,
|
||||
nodeToUse: {
|
||||
store: "/dns4/store-02.ac-cn-hongkong-c.status.staging.status.im/tcp/443/wss/p2p/16Uiu2HAmU7xtcwytXpGpeDrfyhJkiFvTkQbLB9upL5MXPLGceG9K"
|
||||
}
|
||||
};
|
|
@ -1,8 +1,16 @@
|
|||
import { createEncoder, createDecoder, type LightNode } from "@waku/sdk";
|
||||
import { type CreateWakuNodeOptions } from "@waku/sdk";
|
||||
import protobuf from 'protobufjs';
|
||||
import { v4 as uuidv4 } from 'uuid';
|
||||
import { Telemetry, fromFilter, fromStore, TelemetryType, buildExtraData } from "./telemetry";
|
||||
|
||||
export const WAKU_NODE_OPTIONS: CreateWakuNodeOptions = {
|
||||
defaultBootstrap: true,
|
||||
nodeToUse: {
|
||||
store: "/dns4/store-02.ac-cn-hongkong-c.status.staging.status.im/tcp/443/wss/p2p/16Uiu2HAmU7xtcwytXpGpeDrfyhJkiFvTkQbLB9upL5MXPLGceG9K"
|
||||
}
|
||||
};
|
||||
|
||||
export type Signature = {
|
||||
address: `0x${string}`;
|
||||
signature: string;
|
||||
|
|
Loading…
Reference in New Issue