-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathblockchain.js
More file actions
65 lines (53 loc) · 1.65 KB
/
blockchain.js
File metadata and controls
65 lines (53 loc) · 1.65 KB
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
const Block = require('./block');
const cryptoHash = require('./crypto-hash');
class Blockchain {
constructor() {
this.chain = [Block.genesis()];
}
addBlock({ data }) {
const lastBlock = this.getLastBlock();
const newBlock = Block.mineBlock({
lastBlock,
data
});
this.chain.push(newBlock);
}
getLastBlock() {
return this.chain[this.chain.length-1];
}
replaceChain(chain) {
if(chain.length <= this.chain.length) {
console.error('The incoming chain must be longer');
return;
}
if(!Blockchain.isValidChain(chain)) {
console.error('The incoming chain must be valid');
return;
}
console.log('replacing chain with', chain);
this.chain = chain;
}
static isValidChain(chain) {
if(JSON.stringify(chain[0]) !== JSON.stringify(Block.genesis()))
{
return false;
}
for(let i=1; i<chain.length; i++) {
const { timestamp, lastHash, hash, nonce, difficulty, data } = chain[i];
const actualLastHash = chain[i-1].hash;
const lastDifficulty = chain[i-1].difficulty;
if(lastHash !== actualLastHash) {
return false;
}
const validatedHash = cryptoHash(timestamp, lastHash, data, nonce, difficulty);
if(hash !== validatedHash) {
return false;
}
if(Math.abs(lastDifficulty - difficulty) > 1) {
return false;
}
}
return true;
}
}
module.exports = Blockchain;