forked from miker83z/k-DaO
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
424 lines (370 loc) · 12 KB
/
index.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
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
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
const HDWalletProvider = require('@truffle/hdwallet-provider');
const { AuthService } = require('./lib/auth');
const { BrokerService } = require('./lib/broker');
const { Web3Wrapper, artifact } = require('./lib/web3Wrapper');
const { publicKeyCreate } = require('secp256k1');
const MNEMONIC = process.env.MNEMONIC;
const test = async () => {
const host = 'http://127.0.0.1';
const port = 8022;
const auth = new AuthService(host, port);
const plaintext = 'Hello World!';
const alice = (await auth.requestKeypair()).data;
const signer = (await auth.requestSigner()).data;
const bob = (await auth.requestKeypair()).data;
const { ciphertext, capsule } = (
await auth.encrypt({
plaintext,
pk: alice.pk,
})
).data;
const { kfrags } = (
await auth.generateKfrags({
sender: alice,
signer,
receiver: bob.pk,
threshold: 2,
nodes_number: 3,
})
).data;
const { cfrag: cfrag1 } = (
await auth.reencrypt({
sender: alice.pk,
signer: signer.pk,
receiver: bob.pk,
capsule,
kfrag: kfrags[0],
})
).data;
const cfrags = [cfrag1];
const { cfrag: cfrag2 } = (
await auth.reencrypt({
sender: alice.pk,
signer: signer.pk,
receiver: bob.pk,
capsule,
kfrag: kfrags[1],
})
).data;
cfrags.push(cfrag2);
const { plaintext: dPlaintext } = (
await auth.decrypt({
sender: alice.pk,
signer: signer.pk,
receiver: bob,
capsule,
ciphertext,
cfrags,
})
).data;
console.log(dPlaintext);
};
const testSignature = async () => {
const host = 'http://127.0.0.1';
const port = 8022;
const auth = new AuthService(host, port);
const data = 'Hello World 2';
const signer = (await auth.requestSigner()).data;
const { signature } = (
await auth.sign({
signer,
data,
})
).data;
const { verified } = (
await auth.verify({
signature,
data,
pk: signer.pk,
})
).data;
console.log('Signature verified: ' + verified);
};
const testContracts = async () => {
const provider = new HDWalletProvider(MNEMONIC, 'http://127.0.0.1:8545');
try {
const deployer = new Web3Wrapper(provider);
const accounts = await deployer.web3.eth.getAccounts();
const owner = accounts[0];
const alice = accounts[1];
const bob = accounts[2];
///////////////////////////// Setup
// ERC20 Token
const token = await deployer.deploy(artifact.kDaOToken, owner, [
'kDaOToken',
'kDaO',
100000,
]);
//Timelock implementation
const timelockImplementation = await deployer.deploy(
artifact.SimpleTimelockUpgradeable,
owner
);
//Timelock proxy
const proxy = await deployer.deploy(artifact.TokenTimelockProxy, owner, [
token.options.address,
timelockImplementation.options.address,
]);
//kDaO
const kDaOImplementation = await deployer.deploy(artifact.kDaO, owner);
//DataOwnerContract
const docOwner = await deployer.deployDataOwnerContract(owner);
const docAlice = await deployer.deployDataOwnerContract(alice);
const docBob = await deployer.deployDataOwnerContract(bob);
console.log(docOwner.address, docAlice.address, docBob.address);
//AggregatorContract
const agg = await deployer.deploy(artifact.AggregatorContract, owner, [
token.options.address,
kDaOImplementation.options.address,
proxy.options.address,
]);
///////////////////////////////////////////////////
///////////////////// Operations
const amountToStake = 10;
let kDaOAddress = '0x0';
const millisToWait = 9000;
const debatingPeriodMul = 2;
const reasons = deployer.web3.utils.utf8ToHex('some reasons');
//should transfer 100 tokens to alice and bob'
const res1 = await token.methods.transfer(alice, 100).send({
from: owner,
});
const res2 = await token.methods.transfer(bob, 100).send({
from: owner,
});
//should grant access to alice and bob
const dataId = deployer.web3.utils.utf8ToHex('dataId1');
const res3 = await docOwner.grantAccess([alice, bob], dataId);
const res4 = await docOwner.checkPermissions(alice, dataId);
//should grant access to alice after a request
const res5 = await docOwner.requestAccess([alice], dataId, reasons, alice);
const reqId = res5.events.NewRequest.returnValues.requestId;
const res6 = await docOwner.grantAccessRequest(reqId);
// should revoke access to alice
const res7 = await docOwner.revokeAccess([alice], dataId);
//aggregator should request access to alice and bob
const dataIdAlice = deployer.web3.utils.utf8ToHex('dataIdAlice');
const dataIdBob = deployer.web3.utils.utf8ToHex('dataIdBob');
const releaseDatePeriod = Math.floor(
(millisToWait * debatingPeriodMul * debatingPeriodMul) / 1000
);
const parameters = [releaseDatePeriod, 1, 1, 1, 1, 1000, 1];
const res8 = await agg.methods
.requestAccessToData(
[dataIdAlice, dataIdBob],
[docAlice.address, docBob.address],
[owner],
reasons,
parameters
)
.send({
from: owner,
});
const reqIdAlice = res8.events.NewAggregation.returnValues.requestIds[0];
const reqIdBob = res8.events.NewAggregation.returnValues.requestIds[1];
const aggId = res8.events.NewAggregation.returnValues.aggregationId;
const res9 = await docAlice.grantAccessRequest(reqIdAlice);
const res10 = await docBob.grantAccessRequest(reqIdBob);
const checkKgtM = await agg.methods.checkKgtM(aggId).call();
console.log(checkKgtM);
} catch (error) {
console.log(error);
} finally {
provider.engine.stop();
}
};
const testBroker = async () => {
const provider = new HDWalletProvider(MNEMONIC, 'http://127.0.0.1:8545');
try {
const host = 'http://127.0.0.1';
const auth = new AuthService(host, 8024);
const broker = new BrokerService(host, 3164);
const deployer = new Web3Wrapper(provider);
//const accounts = await deployer.web3.eth.getAccounts();
//console.log(provider.wallets[accounts[0]].getPrivateKeyString().slice(2));
const accounts = Object.keys(provider.wallets);
////////////// Owner
const aggregator = accounts[0];
const aggregatorSkUint8 = new Uint8Array(
provider.wallets[aggregator].privateKey
);
const aggregatorPkUint8 = publicKeyCreate(aggregatorSkUint8, true);
const aggregatorKeypair = {
pk: Array.from(aggregatorPkUint8),
sk: Array.from(aggregatorSkUint8),
};
const { pk: aggregatorSignerPkUint8, sk: aggregatorSignerSkUint8 } = (
await auth.requestSigner()
).data;
const aggregatorSignerKeypair = {
pk: Array.from(aggregatorSignerPkUint8),
sk: Array.from(aggregatorSignerSkUint8),
};
const aggregatorSigner = deployer.web3.eth.accounts.privateKeyToAccount(
'0x' + Buffer.from(aggregatorSignerSkUint8).toString('hex')
).address;
////////////// Alice
const doAlice = accounts[1];
const doAliceSkUint8 = new Uint8Array(provider.wallets[doAlice].privateKey);
const doAlicePkUint8 = publicKeyCreate(doAliceSkUint8, true);
const doAliceKeypair = {
pk: Array.from(doAlicePkUint8),
sk: Array.from(doAliceSkUint8),
};
const { pk: doAliceSignerPkUint8, sk: doAliceSignerSkUint8 } = (
await auth.requestSigner()
).data;
const doAliceSignerKeypair = {
pk: Array.from(doAliceSignerPkUint8),
sk: Array.from(doAliceSignerSkUint8),
};
////////////// Bob
const doBob = accounts[2];
const doBobSkUint8 = new Uint8Array(provider.wallets[doBob].privateKey);
const doBobPkUint8 = publicKeyCreate(doBobSkUint8, true);
const doBobKeypair = {
pk: Array.from(doBobPkUint8),
sk: Array.from(doBobSkUint8),
};
const { pk: doBobSignerPkUint8, sk: doBobSignerSkUint8 } = (
await auth.requestSigner()
).data;
const doBobSignerKeypair = {
pk: Array.from(doBobSignerPkUint8),
sk: Array.from(doBobSignerSkUint8),
};
///////////////////////////// Setup
// ERC20 Token
const token = await deployer.deploy(artifact.kDaOToken, aggregator, [
'kDaOToken',
'kDaO',
100000,
]);
//Timelock implementation
const timelockImplementation = await deployer.deploy(
artifact.SimpleTimelockUpgradeable,
aggregator
);
//Timelock proxy
const proxy = await deployer.deploy(
artifact.TokenTimelockProxy,
aggregator,
[token.options.address, timelockImplementation.options.address]
);
//kDaO
const kDaOImplementation = await deployer.deploy(artifact.kDaO, aggregator);
//DataOwnerContract
const docOwner = await deployer.deployDataOwnerContract(aggregator);
const docAlice = await deployer.deployDataOwnerContract(doAlice);
const docBob = await deployer.deployDataOwnerContract(doBob);
//AggregatorContract
const agg = await deployer.deploy(artifact.AggregatorContract, aggregator, [
token.options.address,
kDaOImplementation.options.address,
proxy.options.address,
]);
///////////////////////////////////////////////////
///////////////////// Operations
const millisToWait = 9000;
const debatingPeriodMul = 2;
const reasons = deployer.web3.utils.utf8ToHex('some reasons');
//aggregator should request access to doAlice and doBob
const dataIdAlice = deployer.web3.utils.utf8ToHex('dataIdAlice');
const dataIdBob = deployer.web3.utils.utf8ToHex('dataIdBob');
const releaseDatePeriod = Math.floor(
(millisToWait * debatingPeriodMul * debatingPeriodMul) / 1000
);
const parameters = [releaseDatePeriod, 1, 1, 1, 1, 1000, 1];
const res8 = await agg.methods
.requestAccessToData(
[dataIdAlice, dataIdBob],
[docAlice.address, docBob.address],
[aggregatorSigner],
reasons,
parameters
)
.send({
from: aggregator,
});
const reqIdAlice = res8.events.NewAggregation.returnValues.requestIds[0];
const reqIdBob = res8.events.NewAggregation.returnValues.requestIds[1];
await docAlice.grantAccessRequest(reqIdAlice);
await docBob.grantAccessRequest(reqIdBob);
const plaintext = 'Hello World!';
const { ciphertext, capsule } = (
await auth.encrypt({
plaintext,
pk: doAliceKeypair.pk,
})
).data;
const { kfrags } = (
await auth.generateKfrags({
sender: doAliceKeypair,
signer: doAliceSignerKeypair,
receiver: aggregatorKeypair.pk,
threshold: 1,
nodes_number: 4,
})
).data;
await broker.storeCapsule({
sender: doAliceKeypair.pk,
dataId: 'dataIdAlice',
capsule,
});
await broker.storeKFrag({
sender: doAliceKeypair.pk,
receiver: aggregatorKeypair.pk,
kfrag: kfrags[0],
});
await broker.generateCFrag({
sender: doAliceKeypair.pk,
signer: doAliceSignerKeypair.pk,
dataId: 'dataIdAlice',
receiver: aggregatorKeypair.pk,
});
const dataToSign = 'sign this pls';
const { signature } = (
await auth.sign({
signer: aggregatorSignerKeypair,
data: dataToSign,
})
).data;
const cfrag1 = (
await broker.getCFrag({
address: docAlice.address,
dataId: 'dataIdAlice',
sender: doAliceKeypair.pk,
signer: aggregatorSignerKeypair.pk,
signature,
receiver: aggregatorKeypair.pk,
})
).data;
const cfrags = [cfrag1.result];
const { plaintext: dPlaintext } = (
await auth.decrypt({
sender: doAliceKeypair.pk,
signer: doAliceSignerKeypair.pk,
receiver: aggregatorKeypair,
capsule,
ciphertext,
cfrags,
})
).data;
console.log(dPlaintext);
} catch (error) {
console.log(error);
} finally {
provider.engine.stop();
}
};
const main = async () => {
try {
//await test();
//await testSignature();
//await testContracts();
await testBroker();
} catch (error) {
console.log(error);
}
};
main();