-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnetworkNode.js
More file actions
278 lines (220 loc) · 6.93 KB
/
networkNode.js
File metadata and controls
278 lines (220 loc) · 6.93 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
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
const express = require('express');
const app = express();
const bodyParser = require('body-parser');
const Blockchain = require('./blockchain');
const uuid = require('uuid/v1');
const port = process.argv[2];
const rp = require('request-promise');
const nodeAddress = uuid().split('-').join('');
const bitcoin = new Blockchain();
app.use(bodyParser.json());
app.use(bodyParser.urlencoded({ extended: false }));
// get entire blockchain
app.get('/blockchain', function (req, res) {
res.send(bitcoin);
});
// create a new transaction
app.post('/transaction', function(req, res) {
const newTransaction = req.body;
const blockIndex = bitcoin.addTransactionToPendingTransactions(newTransaction);
res.json({ note: `Transaction will be added in block ${blockIndex}.` });
});
// broadcast transaction
app.post('/transaction/broadcast', function(req, res) {
const newTransaction = bitcoin.createNewTransaction(req.body.amount, req.body.sender, req.body.recipient);
bitcoin.addTransactionToPendingTransactions(newTransaction);
const requestPromises = [];
bitcoin.networkNodes.forEach(networkNodeUrl => {
const requestOptions = {
uri: networkNodeUrl + '/transaction',
method: 'POST',
body: newTransaction,
json: true
};
requestPromises.push(rp(requestOptions));
});
Promise.all(requestPromises)
.then(data => {
res.json({ note: 'Transaction created and broadcast successfully.' });
});
});
// mine a block
app.get('/mine', function(req, res) {
const lastBlock = bitcoin.getLastBlock();
const previousBlockHash = lastBlock['hash'];
const currentBlockData = {
transactions: bitcoin.pendingTransactions,
index: lastBlock['index'] + 1
};
const nonce = bitcoin.proofOfWork(previousBlockHash, currentBlockData);
const blockHash = bitcoin.hashBlock(previousBlockHash, currentBlockData, nonce);
const newBlock = bitcoin.createNewBlock(nonce, previousBlockHash, blockHash);
const requestPromises = [];
bitcoin.networkNodes.forEach(networkNodeUrl => {
const requestOptions = {
uri: networkNodeUrl + '/receive-new-block',
method: 'POST',
body: { newBlock: newBlock },
json: true
};
requestPromises.push(rp(requestOptions));
});
Promise.all(requestPromises)
.then(data => {
const requestOptions = {
uri: bitcoin.currentNodeUrl + '/transaction/broadcast',
method: 'POST',
body: {
amount: 12.5,
sender: "00",
recipient: nodeAddress
},
json: true
};
return rp(requestOptions);
})
.then(data => {
res.json({
note: "New block mined & broadcast successfully",
block: newBlock
});
});
});
// receive new block
app.post('/receive-new-block', function(req, res) {
const newBlock = req.body.newBlock;
const lastBlock = bitcoin.getLastBlock();
const correctHash = lastBlock.hash === newBlock.previousBlockHash;
const correctIndex = lastBlock['index'] + 1 === newBlock['index'];
if (correctHash && correctIndex) {
bitcoin.chain.push(newBlock);
bitcoin.pendingTransactions = [];
res.json({
note: 'New block received and accepted.',
newBlock: newBlock
});
} else {
res.json({
note: 'New block rejected.',
newBlock: newBlock
});
}
});
// register a node and broadcast it the network
app.post('/register-and-broadcast-node', function(req, res) {
const newNodeUrl = req.body.newNodeUrl;
if (bitcoin.networkNodes.indexOf(newNodeUrl) == -1) bitcoin.networkNodes.push(newNodeUrl);
const regNodesPromises = [];
bitcoin.networkNodes.forEach(networkNodeUrl => {
const requestOptions = {
uri: networkNodeUrl + '/register-node',
method: 'POST',
body: { newNodeUrl: newNodeUrl },
json: true
};
regNodesPromises.push(rp(requestOptions));
});
Promise.all(regNodesPromises)
.then(data => {
const bulkRegisterOptions = {
uri: newNodeUrl + '/register-nodes-bulk',
method: 'POST',
body: { allNetworkNodes: [ ...bitcoin.networkNodes, bitcoin.currentNodeUrl ] },
json: true
};
return rp(bulkRegisterOptions);
})
.then(data => {
res.json({ note: 'New node registered with network successfully.' });
});
});
// register a node with the network
app.post('/register-node', function(req, res) {
const newNodeUrl = req.body.newNodeUrl;
const nodeNotAlreadyPresent = bitcoin.networkNodes.indexOf(newNodeUrl) == -1;
const notCurrentNode = bitcoin.currentNodeUrl !== newNodeUrl;
if (nodeNotAlreadyPresent && notCurrentNode) bitcoin.networkNodes.push(newNodeUrl);
res.json({ note: 'New node registered successfully.' });
});
// register multiple nodes at once
app.post('/register-nodes-bulk', function(req, res) {
const allNetworkNodes = req.body.allNetworkNodes;
allNetworkNodes.forEach(networkNodeUrl => {
const nodeNotAlreadyPresent = bitcoin.networkNodes.indexOf(networkNodeUrl) == -1;
const notCurrentNode = bitcoin.currentNodeUrl !== networkNodeUrl;
if (nodeNotAlreadyPresent && notCurrentNode) bitcoin.networkNodes.push(networkNodeUrl);
});
res.json({ note: 'Bulk registration successful.' });
});
// consensus
app.get('/consensus', function(req, res) {
const requestPromises = [];
bitcoin.networkNodes.forEach(networkNodeUrl => {
const requestOptions = {
uri: networkNodeUrl + '/blockchain',
method: 'GET',
json: true
};
requestPromises.push(rp(requestOptions));
});
Promise.all(requestPromises)
.then(blockchains => {
const currentChainLength = bitcoin.chain.length;
let maxChainLength = currentChainLength;
let newLongestChain = null;
let newPendingTransactions = null;
blockchains.forEach(blockchain => {
if (blockchain.chain.length > maxChainLength) {
maxChainLength = blockchain.chain.length;
newLongestChain = blockchain.chain;
newPendingTransactions = blockchain.pendingTransactions;
};
});
if (!newLongestChain || (newLongestChain && !bitcoin.chainIsValid(newLongestChain))) {
res.json({
note: 'Current chain has not been replaced.',
chain: bitcoin.chain
});
}
else {
bitcoin.chain = newLongestChain;
bitcoin.pendingTransactions = newPendingTransactions;
res.json({
note: 'This chain has been replaced.',
chain: bitcoin.chain
});
}
});
});
// get block by blockHash
app.get('/block/:blockHash', function(req, res) {
const blockHash = req.params.blockHash;
const correctBlock = bitcoin.getBlock(blockHash);
res.json({
block: correctBlock
});
});
// get transaction by transactionId
app.get('/transaction/:transactionId', function(req, res) {
const transactionId = req.params.transactionId;
const trasactionData = bitcoin.getTransaction(transactionId);
res.json({
transaction: trasactionData.transaction,
block: trasactionData.block
});
});
// get address by address
app.get('/address/:address', function(req, res) {
const address = req.params.address;
const addressData = bitcoin.getAddressData(address);
res.json({
addressData: addressData
});
});
// block explorer
app.get('/block-explorer', function(req, res) {
res.sendFile('./block-explorer/index.html', { root: __dirname });
});
app.listen(port, function() {
console.log(`Listening on port ${port}...`);
});