-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.js
107 lines (84 loc) · 2.85 KB
/
main.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
const SHA256 = require('crypto-js/sha256');
class Block{
// Cria o bloco com informações padrão
constructor(index, timestamp, data, previousHash = ''){
this.index = index;
this.timestamp = timestamp;
this.data = data;
this.previousHash = previousHash;
this.hash = this.calculateHash();
this.nonce = 0;
}
// Função que calcula o hash
// Parâmetros: index, prevrioshash, timestamp, data, nonce
calculateHash(){
return SHA256(this.index + this.previousHash + this.timestamp + JSON.stringify(this.data) + this.nonce).toString();
}
// Minera o bloco criado
mineBlock(difficulty){
// Enquanto a prova de dificuldade não for satisfeita, persistir no laço de repetição
// A prova de dificuldade é satisfeita quando o hash gerado inicia com a mesma quantidade de "zeros" que a dificuldade
// Ex: Dificuldade = 5
// Hash: 00000nc3276b3s4b326432784632784532v493284632v432
while(this.hash.substring(0, difficulty) !== Array(difficulty +1).join("0")){
// Adiciona +1 na variável 'nonce' para tentar gerar um novo hash
this.nonce++;
this.hash = this.calculateHash();
}
// Bloco finalmente foi minerado
console.log("Block mined: " + this.hash);
console.log("Nonce: " + this.nonce);
}
}
class Blockchain{
// Clica a blockchain(corrente de blocos interligados)
constructor(){
this.chain = [this.createGenesisBlock()];
// Seta a dificuldade de mineração
// Quanto maior a dificuldade, mais tempo demora par o bloco ser gerado
this.difficulty = 4;
}
// Cria o bloco gênesis
// Este é o primeiro bloco da blockchain. O previushash desse blocó é = 0
createGenesisBlock(){
return new Block(0, "01/01/2017", "Genesis Block", "0");
}
// Pega o ultimo bloco minerado
getLatestBlock(){
return this.chain[this.chain.length - 1];
}
// Adiciona um novo bloco na blockchain
addBlock(newBlock){
newBlock.previousHash = this.getLatestBlock().hash;
//newBlock.hash = newBlock.calculateHash();
newBlock.mineBlock(this.difficulty);
this.chain.push(newBlock);
}
// Verifica se a blockchain está corrompida
// Percorre a blockchain inteira verificando o hash dos blocos.
isChainValid(){
for(let i = 1; i < this.chain.length; i++){
const currentBlock = this.chain[i];
const previousBlock = this.chain[i - 1];
if(currentBlock.hash !== currentBlock.calculateHash()){
return false;
}
if(currentBlock.previousHash !== previousBlock.hash){
return false;
}
}
return true;
}
}
// Inicia a blockchain
// Ao iniciar a blockchain, o bloco gênesis é criado automaticamente(método constructor)
let myChain = new Blockchain();
var isDead = false;
var indexBlockchain = 1;
// Roda a aplicação
while(!isDead){
console.log("");
console.log("mining block " + indexBlockchain + "...");
myChain.addBlock(new Block(indexBlockchain, new Date(), {amount: Math.random() * 100000}));
indexBlockchain++;
}