https://syncunstake.netlify.app/

Submitted URL:
https://syncunstake.netlify.app/
Report Finished:

The outgoing links identified from the page

LinkText
https://twitter.com/0xKnight_
https://discord.gg/resyncus

JavaScript Variables · 11 found

Global JavaScript variables loaded on the window object of a page, are variables declared outside of functions and accessible from anywhere in the code within the current scope

NameType
onbeforetoggleobject
documentPictureInPictureobject
onscrollendobject
setImmediatefunction
clearImmediatefunction
regeneratorRuntimeobject
Web3function
Toastifyfunction
getStakedAmountfunction
getApprovedAmountfunction

Console log messages · 1 found

Messages logged to the web console

TypeCategoryLog
errornetwork
URL
https://syncunstake.netlify.app/favicon.ico
Text
Failed to load resource: the server responded with a status of 404 ()

HTML

The raw HTML body of the page

<!DOCTYPE html><html lang="en"><head>
    <meta charset="UTF-8">
    <title>Unstake Sync</title>
    <link rel="stylesheet" href="style.css">
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
    <script src="https://cdn.jsdelivr.net/gh/ethereum/web3.js/dist/web3.min.js"></script>
    <script src="https://cdn.jsdelivr.net/npm/toastify-js"></script>
    <link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/npm/toastify-js/src/toastify.min.css">
  </head>
  <body>
    <div id="content">
      <h1>Unstake your Sync</h1>
      <button id="connectButton">Connect MetaMask</button>
      <div id="walletInteraction">
        <span id="walletAddress" style="display: none"></span>
        <div id="stakeDetails" style="display: none">
          <input type="number" id="unstakeAmount" placeholder="Enter amount to unstake">
          <button id="balance">Max:</button>
        </div>
        <button id="unstakeButton" style="display: none">Unstake</button>
      </div>
    </div>
    <footer>
      <p>Made by: Knight</p>
      <a href="https://twitter.com/0xKnight_" target="_blank"><i class="fab fa-twitter"></i></a>
      <a href="https://discord.gg/resyncus" target="_blank"><i class="fab fa-discord"></i></a>
    </footer>
    <script src="app.js"></script>
  

</body></html>