-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
34 lines (27 loc) · 981 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<!DOCTYPE html>
<html lang="en">
<head>
<title>Wallet Integration</title>
<script src="https://cdn.jsdelivr.net/npm/ethers@5.7.0/dist/ethers.umd.min.js"></script>
<script type="module" src="index.js"></script> <!-- Include your JavaScript file -->
</head>
<body>
<h1>Connect Wallet</h1>
<button id="connectButton">Connect to Wallet</button>
<div>
<input type="number" id="numberInput" placeholder="Enter a number" />
<button id="setNumberButton">Set Number</button>
</div>
<div>
<input type="number" id="numberInput" placeholder="Enter a number" />
<button id="incrementButton">Increment</button>
</div>
<div>
<input type="number" id="numberInput" placeholder="Enter a number" />
<button id="readNumberButton">Current Number</button>
</div>
<script>
// You can add any inline script here if needed, but the main functionality is in index.js
</script>
</body>
</html>