This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script src="https://notify.waxsweden.org/static/assets/waxjs.js"></script> | |
<strong>Login and get your WAX wallet trust score</strong> | |
<br/> | |
<button id="login" onclick="login()">WAX Login</button> | |
<p style="color:#ef9d47" id="loginresponse"></p> | |
<strong>Sign Transaction</strong> | |
<p>Click once you're logged in. <br>It's just a 0.00000001 WAXP transfer, just decline it if you want.</p> | |
<button id="sign" onclick="sign()">Sign Transaction</button> | |
<pre><code id="response">Transaction Response |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
if [[ $1 == "" ]]; then | |
echo "Search for vanity keys - Usage : ./vanity.sh STRING" | |
exit 1 | |
fi | |
echo "Finding keys containing : $1" | |
STRING=$(echo "$1" | tr '[:upper:]' '[:lower:]') |