-
Notifications
You must be signed in to change notification settings - Fork 23
/
sim-selfish.js
200 lines (159 loc) · 4.65 KB
/
sim-selfish.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
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
/*
Selfish Mining Attack Simulation
*/
var net = require("./network"),
peermgr = require("./peermgr"),
btc = require("./btc"),
client = new net.Client()
client.use(peermgr)
client.use(btc)
var selfishHashrate = 0.3;
client.init(function() {
if (this.id == 0) { // node 0 is the selfish miner
//if (false) {
this.peermgr.maxpeers = 99;
var lead = [];
var state = 0;
this.mine(selfishHashrate, function() {
var publicHead = this.blockchain.chainstate.head;
var privateHead;
if (lead.length == 0) {
privateHead = publicHead;
} else {
privateHead = lead[lead.length - 1]
}
if (publicHead.h == privateHead.h) {
if (publicHead != privateHead) {
this.log("propagating entire private chain (" + lead.length + " blocks)")
// We need to propagate our entire lead.
lead.forEach(function(b) {
this.inventory.relay(b.id, true);
this.blockchain.chainstate.enter(b, true);
}, this)
lead.length = 0;
state = 0;
}
} else {
if (publicHead.h > privateHead.h) {
this.log("adopting public chain")
lead.length = 0;
state = 0;
privateHead = publicHead;
} else if (privateHead.h > publicHead.h) {
// We're ahead, but by how much?
var ahead = privateHead.h - publicHead.h;
if (ahead == 1) {
if (state == 0) {
this.log("ignoring 1 lead")
// We're ahead by one, for the first time, so we'll wait and see if we can catch a block.
} else {
this.log("lead threatened; propagating entire private chain (" + lead.length + " blocks)")
// We're only ahead by one now. Let's just propagate everything.
lead.forEach(function(b) {
this.inventory.relay(b.id, true);
this.blockchain.chainstate.enter(b, true);
}, this)
lead.length = 0;
state = 0;
}
} else {
state = 1;
// We're ahead by more than one, let's propagate our lead blocks UNTIL we reach the public
// chainstate's head.
var spliceOut = 0;
lead.some(function(b) {
if (b.h < publicHead.h) {
this.inventory.relay(b.id, true);
this.blockchain.chainstate.enter(b);
spliceOut++;
return false;
} else if (b.h == publicHead.h) {
this.inventory.relay(b.id, true);
this.blockchain.chainstate.enter(b);
spliceOut++;
return true;
}
return true;
}, this)
this.log("propagated " + spliceOut + " of our " + lead.length + " lead (public is at " + publicHead.h + ")")
lead.splice(0, spliceOut);
}
}
}
var newb = new this.blockchain.Block(privateHead, this.now(), this);
return newb;
})
this.on("miner:success", function(from, b) {
b.time = this.now();
// Don't relay block yet.
this.inventory.createObj("block", b)
// Record the block.
lead.push(b);
return false; // hook the functionality of the blockchain
})
} else {
if (this.id == 0) {
this.peermgr.maxpeers = 99;
this.mine(selfishHashrate);
}
else
this.mine((1-selfishHashrate)/99)
}
})
net.add(100, client)
net.check(10000 * 1000, function() {
net.nodes[90].blockchain.chainstate.head;
var cur = net.nodes[90].blockchain.chainstate.head;
var totalH = cur.h;
var attackerRevenue = 0;
while (cur) {
if (cur.credit == 0)
attackerRevenue++;
cur = cur._prev();
}
var perHour = (attackerRevenue / (net.now / (1000 * 60 * 60))).toFixed(2);
net.log("Node 0 revenue: " + ((attackerRevenue / totalH) * 100).toFixed(2) + "%, " + perHour + " per hour; h=" + totalH + "; t=" + net.now + " msec")
})
if (net.visualizer) {
net.check(15000 * 1000, function() {
var arrTimeSince = [];
var mapBucket = {};
var cur = net.nodes[90].blockchain.chainstate.head;
var last = -1;
while (cur) {
if (last >= 0) {
arrTimeSince.push(last - cur.time)
var timeSince = Math.floor(((last - cur.time)/1000) / 20); // buckets of 20 seconds
if (!(timeSince in mapBucket)) {
mapBucket[timeSince] = 0;
}
mapBucket[timeSince]++;
}
last = cur.time;
cur = cur._prev();
}
var data = [];
for (i in mapBucket) {
data.push([i*20,mapBucket[i]])
}
net.visualizer.drawScatter(data);
/*
// calculate the average
var mean = 0;
arrTimeSince.forEach(function(n) {
mean+=n;
})
mean /= arrTimeSince.length;
// calculate variance
var variance = 0;
arrTimeSince.forEach(function(n) {
variance += Math.pow((n - mean), 2);
})
variance /= arrTimeSince.length;
// calculate stddev
var stddev = Math.sqrt(variance);
net.log("time between blocks: mean = " + (mean/1000).toFixed(2) + " seconds; stddev = " + (stddev/1000).toFixed(2) + ' seconds');
*/
})
}
net.run(Infinity)