Official Go implementation of the Ethereum protocol
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
go-ethereum/ethereal/assets/test.html

40 lines
909 B

<html>
<head>
<title>jeffcoin</title>
<body>
<h1>Jeff Coin</h1>
<img src="file:///Users/jeffrey/Desktop/iconnew.png">
<div id="transactions">
<input id="addr" type="text" placeholder="Receiver address"></input><br>
<input id="amount" type="text" placeholder="Amount"></input><br>
<button onclick="createTransaction();">Send Tx</button>
</div>
<div><button onclick="test();">Tests</button></div>
<script type="text/javascript">
function createTransaction() {
debug("test")
var addr = document.querySelector("#addr").value;
var amount = document.querySelector("#amount").value;
eth.createTx(addr, amount, "100", "250", "", function(tx) {
debug("received tx hash:", tx)
})
}
// Any test related actions here please
function tests() {
eth.getBlock(1, function(block) {
debug("queried block:", block)
})
}
</script>
<div id="debug" style="border: 1px solid block"></div>
</body>
</html>