Inscription #71080928#71,080,928html#69,970,734videoInscription #65843918#65,843,918pngInscription #65485396#65,485,396html#64,381,573Inscription #63605506#63,605,506htmlInscription #63605505#63,605,505htmlInscription #63605504#63,605,504htmlInscription #63605503#63,605,503htmlInscription #63605502#63,605,502htmlInscription #53567719#53,567,719svgInscription #52150629#52,150,629pngInscription #39242605#39,242,605pngInscription #39242372#39,242,372pngInscription #39242272#39,242,272pngInscription #39141336#39,141,336png<!DOCTYPE html> <html> <head> <title>TaprootCows - Whitelist Checker</title> <style> body { display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100vh; font-family: Monospace, Sans-serif; font-size: 12px; } h1 { font-size: 24px; text-align: center; } h2 { font-size: 16px; text-align: center; } form { display: flex; flex-direction: column; align-items: center; font-family: Monospace, Sans-serif; } label { margin-bottom: 10px; } input { padding: 5px; margin-bottom: 10px; width: 250px; } button { padding: 10px 20px; font-family: Monospace, Sans-serif; } #response { font-weight: bold; display: flex; align-items: center; justify-content: center; text-align: center; } </style> </head> <body> <h1>Taproot Cows Universe</h1> <h2>Quantum Link Tier 3</h2> <form id="walletForm"> <label for="walletAddress">Whitelist Checker</label> <input type="text" id="walletAddress" placeholder="Enter your ordinal wallet here 'bc1...'" name="walletAddress" required> <button type="submit">Check</button> </form> <div id="response"></div> <script> const form = document.getElementById('walletForm'); const responseContainer = document.getElementById('response'); form.addEventListener('submit', async (event) => { event.preventDefault(); const walletAddressInput = document.getElementById('walletAddress'); const walletAddress = walletAddressInput.value; if (!walletAddress.startsWith('bc1')) { responseContainer.innerHTML = '<pre>Invalid wallet address.\nPlease enter a valid address starting with "bc1...".</pre>'; return; } try { const response = await fetch(`https://taprootcows.duckdns.org:4443/check?address=${walletAddress}`); const data = await response.json(); responseContainer.innerHTML = `<pre>${data.message}</pre>`; walletAddressInput.value = ''; setTimeout(() => { responseContainer.textContent = ''; }, 15000); } catch (error) { console.error('Error:', error); } }); </script> </body> </html>#16,283,257textInscription #9993141#9,993,141png