idquia
Version:
Web3-Onboard makes it simple to connect Ethereum hardware and software wallets to your dapp. Features standardised spec compliant web3 providers for all supported wallets, framework agnostic modern javascript UI with code splitting, CSS customization, mul
25 lines • 772 B
HTML
<html>
<head>
<meta charset="utf-8" />
<link rel="icon" type="image/x-icon" href="./public/favicon.ico">
<title>@web3-onboard with vanilla js</title>
<script defer src="/runtime.js"></script>
<script defer src="/main.js"></script>
</head>
<body>
<main class="main">
<h1>Welcome to this demo of <span>Web3-Onboard</span> + Vanilla JS!</h1>
<div class="wallet hidden">
<div class="connected">
<div class="address"></div>
<div class="label"></div>
</div>
<button class="disconnect-button">Disconnect</button>
</div>
<div class="disconnected">
<button class="connect-button">Connect</button>
</div>
</main>
</body>
</html>