-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (37 loc) · 1.12 KB
/
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
35
36
37
38
<!DOCTYPE html>
<html>
<head>
<title>Send BERA</title>
<link rel="stylesheet" href="style.css">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/web3.min.js"></script>
</head>
<body>
<header>
<img class="logo" src="src/logo.png" alt="Logo">
</header>
<form id="send-form">
<p>This app will send from one wallet address to multiple addresses, and will send all balance on the wallet minus gas fee</p>
<div>
<h2>Input Private Key:</h2>
<textarea type="text" id="private-key" name="private-key" placeholder="privatekey"></textarea>
</div>
<div>
<h2>To Addresses:</h2>
<textarea type="text" id="to-addresses" name="to-addresses" placeholder="0xdead1
0xdead2
0xdead1000"></textarea>
</div>
<div>
<button type="button" id="send-button">Send</button>
</div>
</form>
<section class="output-wrapper">
<h2>Output:</h2>
<div id="output" contenteditable="true"></div>
</section>
<script type="text/javascript" src="app.js"></script>
</body>
<footer>
<div class="footer-container">
<p>Made with ❤️ by Wandaem</p>
</div>
</footer>
</html>