mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 02:10:12 +01:00
17 lines
341 B
HTML
17 lines
341 B
HTML
|
<!doctype html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<title>E2E Test Dapp</title>
|
||
|
</head>
|
||
|
<body>
|
||
|
<div id="success"></div>
|
||
|
<input id="address" />
|
||
|
<button id="send">Send with private key</button>
|
||
|
|
||
|
|
||
|
<script src="web3js.js"></script>
|
||
|
<script src="ethereumjs-tx.js"></script>
|
||
|
<script src="send-eth-with-private-key.js"></script>
|
||
|
</body>
|
||
|
|
||
|
</html>
|