2015-01-29 19:39:26 +00:00
<!doctype>
< html >
2015-01-30 12:25:12 +00:00
< title > JevCoin< / title >
2015-01-29 19:39:26 +00:00
< head >
< script type = "text/javascript" src = "../ext/bignumber.min.js" > < / script >
2015-04-24 09:39:43 +00:00
< script type = "text/javascript" src = "../ext/ethereum.js/dist/web3-light.min.js" > < / script >
2015-01-29 19:39:26 +00:00
< / head >
< body >
2015-02-11 12:26:44 +00:00
< h1 > JevCoin < code id = "contract_addr" > < / code > < / h1 >
2015-01-29 19:39:26 +00:00
< div >
< strong > Balance< / strong >
< span id = "balance" > < / strong >
< / div >
< div >
2015-02-22 12:12:01 +00:00
< span > Address:< / span >
2015-01-29 19:39:26 +00:00
< input type = "text" id = "address" style = "width:200px" >
2015-02-22 12:12:01 +00:00
< span > Amount:< / span >
2015-01-29 19:39:26 +00:00
< input type = "text" id = "amount" style = "width:200px" >
< button onclick = "transact()" > Send< / button >
2015-02-23 14:43:41 +00:00
< span id = "message" > < / span >
2015-01-29 19:39:26 +00:00
< / div >
2015-02-07 16:04:19 +00:00
< hr >
2015-01-29 19:39:26 +00:00
< table width = "100%" id = "table" >
2015-02-07 16:04:19 +00:00
< tr > < td style = "width:40%;" > Address< / td > < td > Balance< / td > < / tr >
< tbody id = "table_body" > < / tbody >
2015-01-29 19:39:26 +00:00
< / table >
< / body >
< script type = "text/javascript" >
var eth = web3.eth;
2015-03-10 12:40:49 +00:00
web3.setProvider(new web3.providers.HttpProvider('http://localhost:8545'));
2015-02-07 16:04:19 +00:00
var desc = [{
2015-01-29 19:39:26 +00:00
"name": "balance(address)",
2015-02-04 23:05:47 +00:00
"type": "function",
2015-01-29 19:39:26 +00:00
"inputs": [{
"name": "who",
"type": "address"
}],
2015-02-04 23:05:47 +00:00
"constant": true,
2015-01-29 19:39:26 +00:00
"outputs": [{
"name": "value",
"type": "uint256"
}]
}, {
"name": "send(address,uint256)",
2015-02-04 23:05:47 +00:00
"type": "function",
2015-01-29 19:39:26 +00:00
"inputs": [{
"name": "to",
"type": "address"
}, {
"name": "value",
"type": "uint256"
}],
"outputs": []
2015-02-04 23:05:47 +00:00
}, {
2015-02-22 12:12:01 +00:00
"name":"Changed",
2015-02-04 23:05:47 +00:00
"type":"event",
"inputs": [
2015-02-07 16:04:19 +00:00
{"name":"from","type":"address","indexed":true},
2015-02-11 12:26:44 +00:00
{"name":"amount","type":"uint256","indexed":true},
2015-02-04 23:05:47 +00:00
],
2015-01-29 19:39:26 +00:00
}];
2015-02-07 16:04:19 +00:00
var address = localStorage.getItem("address");
// deploy if not exist
2015-03-26 00:03:14 +00:00
if(address === null) {
2015-02-22 12:12:01 +00:00
var code = "0x60056013565b61014f8061003a6000396000f35b620f42406000600033600160a060020a0316815260200190815260200160002081905550560060e060020a600035048063d0679d3414610020578063e3d670d71461003457005b61002e600435602435610049565b60006000f35b61003f600435610129565b8060005260206000f35b806000600033600160a060020a03168152602001908152602001600020541061007157610076565b610125565b806000600033600160a060020a03168152602001908152602001600020908154039081905550806000600084600160a060020a031681526020019081526020016000209081540190819055508033600160a060020a03167fb52dda022b6c1a1f40905a85f257f689aa5d69d850e49cf939d688fbe5af594660006000a38082600160a060020a03167fb52dda022b6c1a1f40905a85f257f689aa5d69d850e49cf939d688fbe5af594660006000a35b5050565b60006000600083600160a060020a0316815260200190815260200160002054905091905056";
2015-04-08 16:08:21 +00:00
address = web3.eth.sendTransaction({from: eth.accounts[0], data: code, gas: "1000000"});
2015-04-03 08:50:07 +00:00
localStorage.setItem("address", address);
2015-02-07 16:04:19 +00:00
}
2015-02-22 12:12:01 +00:00
document.querySelector("#contract_addr").innerHTML = address;
2015-01-29 22:17:43 +00:00
2015-03-10 19:14:38 +00:00
var Contract = web3.eth.contract(desc);
contract = new Contract(address);
2015-04-08 16:08:21 +00:00
var filter = contract.Changed({from: eth.accounts[0]})
filter.watch(function(logs) {
console.log(logs);
2015-02-07 16:04:19 +00:00
refresh();
2015-02-04 23:05:47 +00:00
});
2015-04-08 16:08:21 +00:00
window.filter = filter;
2015-01-29 22:58:43 +00:00
2015-02-07 16:04:19 +00:00
function refresh() {
2015-04-09 09:49:14 +00:00
document.querySelector("#balance").innerHTML = contract.balance(eth.coinbase);
2015-01-29 19:39:26 +00:00
}
function transact() {
2015-02-23 14:43:41 +00:00
var to = document.querySelector("#address");
if( to.value.length == 0 ) {
2015-02-07 16:04:19 +00:00
to = "0x4205b06c2cfa0e30359edcab94543266cb6fa1d3";
} else {
2015-02-23 14:43:41 +00:00
if (to.value.substr(0,2) != "0x")
to.value = "0x"+to.value;
2015-02-07 16:04:19 +00:00
}
2015-01-29 22:17:43 +00:00
2015-02-23 14:43:41 +00:00
var value = document.querySelector("#amount");
var amount = parseInt( value.value );
console.log("transact: ", to.value, " => ", amount)
2015-01-29 19:39:26 +00:00
2015-05-22 20:44:51 +00:00
contract.send.sendTransaction(to.value, amount ,{from: eth.accounts[0]});
2015-02-23 14:43:41 +00:00
to.value = "";
value.value = "";
var message = document.querySelector("#message")
message.innerHTML = "Submitted";
setTimeout(function() {
message.innerHTML = "";
}, 1000);
2015-01-29 19:39:26 +00:00
}
2015-02-07 16:04:19 +00:00
refresh();
2015-01-29 19:39:26 +00:00
< / script >
< / html >
2015-02-07 16:04:19 +00:00
<!--
contract JevCoin {
function JevCoin()
{
balances[msg.sender] = 1000000;
}
2015-02-22 12:12:01 +00:00
event Changed(address indexed from, uint indexed amount);
2015-02-07 16:04:19 +00:00
function send(address to, uint value)
{
if( balances[msg.sender] < value ) return ;
balances[msg.sender] -= value;
balances[to] += value;
2015-02-22 12:12:01 +00:00
Changed(msg.sender, value);
Changed(to, value);
2015-02-07 16:04:19 +00:00
}
function balance(address who) constant returns(uint t)
{
t = balances[who];
}
mapping(address => uint256) balances;
}
-!>