Update ENS endpoint

should really make this a config var...
This commit is contained in:
Marco van Dijk 2023-05-12 09:59:14 +02:00 committed by GitHub
parent d4e1c33702
commit 1533893e35
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -52,7 +52,7 @@ let lastUpdated = 0;
const updateEns = async function () { const updateEns = async function () {
try { try {
const url = "https://nframe.nl/api/livepeer/getEnsDomains"; const url = "https://stronk.rocks/api/livepeer/getEnsDomains";
console.log("Getting new ENS data from " + url); console.log("Getting new ENS data from " + url);
https.get(url, (res2) => { https.get(url, (res2) => {
@ -293,4 +293,4 @@ recoverStorage();
export default masterRouter; export default masterRouter;