Skip to content

Instantly share code, notes, and snippets.

View coachbjork's full-sized avatar
🏠
Working from home

Anders 'anyobservation' Björk coachbjork

🏠
Working from home
View GitHub Profile
@coachbjork
coachbjork / index.html
Last active October 15, 2023 14:53
Basic WAX Login Example
<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
#!/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:]')