-
Notifications
You must be signed in to change notification settings - Fork 12
/
index.js
53 lines (49 loc) · 1.89 KB
/
index.js
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
//after the script tags are loaded (web3 & jquery) run this function
window.onload = function() {
//initialize web3
var web3 = new Web3(new Web3.providers.HttpProvider("http://localhost:8545"));
var contractInstance;
//load the json file we wrote to earlier
$.getJSON("./contract.json", function(contract) {
//get the instance of our contract using the (1) address and (2) abi as discussed earlier
//we will always need these 2 to interact with a deployed contract instance
contractInstance = web3.eth
.contract(JSON.parse(contract.abi))
.at(contract.address);
//on the vote button click, execute this function on the contract.
//from: sign the transaction by using the first account
window.voteForCandidate = function() {
candidateName = $("#candidate").val();
contractInstance.voteForCandidate(
candidateName,
{ from: web3.eth.accounts[0] },
function() {
let div_id = candidates[candidateName];
$("#" + div_id).html(
contractInstance.totalVotesFor.call(candidateName).toString()
);
}
);
};
//after we have an instance of the contract update the initial candidate votes
//recall that during deploying the contract we updated votes for Rama to 1
for (var i = 0; i < candidateNames.length; i++) {
let name = candidateNames[i];
let val = contractInstance.totalVotesFor.call(name).toString();
$("#" + candidates[name]).html(val);
}
});
var candidates = {
Rama: "candidate-1",
Nick: "candidate-2",
Claudius: "candidate-3"
};
var candidateNames = Object.keys(candidates);
//initialize candidate votes to 0 until we have an instance of the contract instance
$(document).ready(function(event) {
for (var i = 0; i < candidateNames.length; i++) {
let name = candidateNames[i];
$("#" + candidates[name]).html(0);
}
});
};