import { PubSub, Socket } from "lux/dist" const protocol: string = "ws" const host: string = "localhost" const port: number = 9650 const addresses: string[] = ["X-local18jma8ppw3nhx5r4ap8clazz0dps7rv5u00z96u"] const main = async (): Promise => { const pubsub: PubSub = new PubSub() const newSet: string = pubsub.newSet() const addAddresses: string = pubsub.addAddresses(addresses) const socket: Socket = new Socket( `${protocol}://${host}:${port}/ext/bc/X/events` ) socket.onopen = () => { console.log("Socket Connected") socket.send(newSet) socket.send(addAddresses) } socket.onmessage = (msg: any) => { console.log(msg.data) socket.close() } socket.onclose = () => { console.log("Socket Disconnected") } socket.onerror = (error: any) => { console.log(error) } } main()