To view the list of links, please access this site using Tor Browser.
If you’re seeing this message, access is restricted for regular browsers.
Already using Tor? If you are sure you’re currently in Tor Browser, proceed to our .onion version:
#!/bin/bash ## Is Archetyp Market Up? socks_proxy='localhost:9050' ## Put your mirror here ⤵️ mirror[1]='http://4pt4axjgzmm4ibmxplfiuvopxzf775e5bqseyllafcecryfthdupjwyd.onion' #mirror[2]='' #mirror[3]='...' for link in ${mirror[@]}; do timeout=5 slink="${link:7:9}...${link: -7}" echo "🔎 testing $slink" if response=$(timeout $timeout curl -s --socks5-hostname "$socks_proxy" "$link") ; then echo "🙋 $link is up" if echo $response | grep -i maintenance > /dev/null; then echo "🛠 Market is still showing maintenance mode..." else echo "🤔 Market state changed!" fi else echo "❓ Can't reach $link" fi done