Initial commit

This commit is contained in:
2024-10-01 22:56:10 +03:00
commit 18d1a02e98
9 changed files with 2978 additions and 0 deletions

21
index.html Normal file
View File

@@ -0,0 +1,21 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title>ZKL Roadhog Demo</title>
</head>
<body>
<script src="dist/bundle.js"></script>
<script>
window.addEventListener('load', function () {
document.getElementById('metamask').disabled = false;
document.getElementById('phantom').disabled = false;
});
</script>
<h1>ZKL Roadhog Demo</h1>
<button disabled id="metamask" onclick="signIn('ethereum')">sign in with metamask</button>
<button disabled id="phantom" onclick="signIn('solana')">sign in with solana</button>
</body>
</html>