Skip to content
Open

Dapp #615

Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions examples/simple-dapp/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Simple Base dApp</title>
</head>
<body>
<h1>Simple Base dApp</h1>
<button id="connect">Connect Wallet</button>
<p id="status">Not connected</p>

<script src="https://cdn.jsdelivr.net/npm/ethers@6.7.0/dist/ethers.min.js"></script>
<script src="./script.js"></script>
</body>
</html>