-
Notifications
You must be signed in to change notification settings - Fork 19
/
index.html
40 lines (34 loc) · 1.77 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
39
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Eclipse Mainnet Bridge</title>
<link rel="stylesheet" href="style.css">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/web3.min.js"></script>
<script src="https://cdn.ethers.io/lib/ethers-5.2.umd.min.js"
type="application/javascript"></script>
<script src="script.js"></script>
</head>
<body>
<div class="form-container">
<h1>UNOFFICIAL ETHEREUM MAINNET - ECLIPSE BRIDGE by hkey</h1>
<form>
<div>
<input style="width: 300px;" type="text" id="sender-eth-addr" placeholder="Metamask not connected." disabled>
<button style="float: right;" id="connect-button">CONNECT</button>
</div>
<input type="number" id="ether-amount" step="0.1" value="0.002" placeholder="Amount in ether">
<input type="text" id="eclipse-wallet" placeholder="Your eclipse wallet address.">
<input disabled value="Your will see your Eclipse balance here." id="balance">
<p>
<li>Looking for the testnet bridge? <a href="https://hkey0.github.io/EclipseBridge/testnet">Here</a> is the testnet bridge UI. (Sepolia-Eclipse Testnet)</li>
<li>Make sure you select the correct chain before sending the transaction (Ethereum Mainnet).</li>
<li>Eclipse is currently in the Developer Mainnet phase, during this phase you will not be able to withdraw your ethers.</li>
</p>
<button disabled type="button" id="bridge-button" >BRIDGE</button>
<h6 class="dev-credit">TWITTER: <a href="https://x.com/hkeydesign">hkeydesign</a></h6>
<h6 class="dev-credit">Github Repo: <a href="https://github.com/hkey0/EclipseBridge">hkey0/EclipseBridge</a></h6>
</form>
</div>
</body>
</html>