import "../../_dnt.polyfills.js"; import { WsConnection } from "../../rpc/mod.js" import { detectServer } from "./detectServer.js" export class DevnetConnection extends WsConnection { constructor(path: string) { const url = new URL(`/devnets/${path}`, detectServer()) url.protocol = "ws" super(url.toString()) } }