-
Notifications
You must be signed in to change notification settings - Fork 0
/
blockchain.js
56 lines (42 loc) · 1.44 KB
/
blockchain.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
const Block = require('./block')
const cryptoHash = require('./crypto-hash')
class Blockchain {
constructor() {
this.chain = [Block.genesis()]
}
addBlock({ data }){
const newBlock = Block.mineBlock({
lastBlock: this.chain[this.chain.length - 1],
data
});
this.chain.push(newBlock);
}
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 must be invalid');
return;
}
console.log('replaching 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 actualHash = chain[i-1].hash;
const lastDifficulty = chain[i-1].difficulty;
if(lastHash !== actualHash) 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;