From 2bed5158fac251ecf2c66b873aacfae3e9bfb82b Mon Sep 17 00:00:00 2001 From: Derrick Hammer Date: Sun, 9 Apr 2023 19:45:29 -0400 Subject: [PATCH] * Update host and port in util.ts to use "web3portal.com" and port "80" for HTTP requests. --- src/util.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util.ts b/src/util.ts index 0b70791..4401272 100644 --- a/src/util.ts +++ b/src/util.ts @@ -23,7 +23,7 @@ export async function getRelayProxies() { //let relays: string[] = await relayDht.getRelayServers(); let proxies = [ { type: "http", host: "localhost", port: 25252 }, - { type: "http", host: "161.35.121.185", port: 25252 }, + { type: "http", host: "web3portal.com", port: 80 }, ]; /* for (const relay of relays) {