-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy patherc777.js
824 lines (674 loc) · 26.4 KB
/
erc777.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
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
const erc777 = artifacts.require('erc777');
const erc777TokenReceiver = artifacts.require('erc777TokenReceiver');
const erc777TokenSender = artifacts.require('erc777TokenSender');
const erc1820Registry = artifacts.require('ERC1820Registry');
const truffleFromAddress = '0x954e72fdc51Cf919203067406fB337Ed4bDC8CdA';
const args = {
name: 'My777Token',
symbol: 'MT777',
totalSupply: 100000000,
granularity: 10,
defaultOperators: [
truffleFromAddress,
'0x0000000000000000000000000000000000000001',
'0x0000000000000000000000000000000000000002',
'0x0000000000000000000000000000000000000003',
],
}
let defaultOperator,
holder,
operator,
receiver,
erc777Token,
zeroAddress;
contract('ERC777', async accounts => {
beforeEach(async () => {
defaultOperator = accounts[0];
holder = accounts[1];
operator = accounts[2];
receiver = accounts[3];
zeroAddress = '0x0000000000000000000000000000000000000000'
erc777Token = await erc777.new(
args.name,
args.symbol,
args.totalSupply,
args.granularity,
args.defaultOperators,
{ from: defaultOperator }
);
});
it('...should set correct vanity information', async () => {
const name = await erc777Token.name.call();
assert.strictEqual(name, args.name);
const symbol = await erc777Token.symbol.call();
assert.strictEqual(symbol, args.symbol);
const totalSupply = await erc777Token.totalSupply.call();
assert.strictEqual(totalSupply.toNumber(), args.totalSupply);
const granularity = await erc777Token.granularity.call();
assert.strictEqual(granularity.toNumber(), args.granularity);
const defaultOperators = await erc777Token.defaultOperators.call();
assert.strictEqual(defaultOperators.toString(), args.defaultOperators.toString());
});
it('...should register ERC1820 `ERC777Token` interface.', async () => {
const erc1820JsonInterface = erc1820Registry.abi;
const erc1820Address = '0x1820a4B7618BdE71Dce8cdc73aAB6C95905faD24';
const erc1820Instance = new web3.eth.Contract(erc1820JsonInterface, erc1820Address);
const interfaceHash = web3.utils.keccak256('ERC777Token');
const interfaceHash_implementer = await erc1820Instance.methods.getInterfaceImplementer(erc777Token.address, interfaceHash).call();
const interfaceHash_correct = '0xac7fbab5f54a3ca8194167523c6753bfeb96a445279294b6125b68cce2177054';
assert.strictEqual(interfaceHash, interfaceHash_correct);
assert.strictEqual(interfaceHash_implementer, erc777Token.address);
});
it('...default operator should mint tokens.', async () => {
const operator_balance_before = await erc777Token.balanceOf.call(defaultOperator);
const amount = 100;
await erc777Token.mint(defaultOperator, amount);
const operator_balance_after = await erc777Token.balanceOf.call(defaultOperator);
assert.equal(
operator_balance_before,
operator_balance_after - amount,
'Receiver balance was not correctly updated.'
);
});
it('...non default operator should not mint tokens.', async () => {
const amount = 100;
try {
await erc777Token.mint(receiver, amount, { from: holder });
} catch (e) {
revert = e;
}
assert.instanceOf(
revert,
Error,
'Mint from non default operator did not revert.'
);
});
it('...holder should send tokens.', async () => {
const amount = 100;
await erc777Token.mint(holder, amount, { from: defaultOperator });
const holder_balance_before = await erc777Token.balanceOf.call(holder);
const receiver_balance_before = await erc777Token.balanceOf.call(receiver);
await erc777Token.send(receiver, amount, { from: holder });
const holder_balance_after = await erc777Token.balanceOf.call(holder);
const receiver_balance_after = await erc777Token.balanceOf.call(receiver);
assert.equal(
holder_balance_before - amount,
holder_balance_after.toString(),
'Holder balance was not correctly updated.'
);
assert.equal(
receiver_balance_before.toString(),
receiver_balance_after - amount,
'Receiver balance was not correctly updated.'
);
});
it('...holder should not send tokens to ZERO_ADDRESS.', async () => {
const amount = 100;
await erc777Token.mint(holder, amount, { from: defaultOperator });
try {
await erc777Token.send(zeroAddress, amount, { from: holder });
} catch (e) {
revert = e;
}
assert.instanceOf(
revert,
Error,
'Send to ZERO_ADDRESS did not revert.'
)
});
it('...holder should authorizeOperator.', async () => {
const newOperator = accounts[2];
const operator_status_before = await erc777Token.isOperatorFor.call(newOperator, holder);
await erc777Token.authorizeOperator(newOperator, { from: holder });
const operator_status_after = await erc777Token.isOperatorFor.call(newOperator, holder);
assert.isNotOk(
operator_status_before,
'Operators for holder are not correctly filtered.'
);
assert.isOk(
operator_status_after,
'Holder did not correctly authorize operator.'
);
});
it('...holder should revokeOperator.', async () => {
await erc777Token.authorizeOperator(operator, { from: holder });
const operator_status_before = await erc777Token.isOperatorFor.call(operator, holder);
await erc777Token.revokeOperator(operator, { from: holder });
const operator_status_after = await erc777Token.isOperatorFor.call(operator, holder);
assert.isOk(
operator_status_before,
'Operators for holder were not correctly filtered.'
);
assert.isNotOk(
operator_status_after,
'Operator rights were not correctly revoked.'
);
});
it('...holder should do operatorSend.', async () => {
// "holder should be operator for self"
const amount = 100;
await erc777Token.mint(holder, amount, { from: defaultOperator });
const holder_balance_before = await erc777Token.balanceOf.call(holder);
const receiver_balance_before = await erc777Token.balanceOf.call(receiver);
await erc777Token.operatorSend(holder, receiver, amount, { from: holder });
const holder_balance_after = await erc777Token.balanceOf.call(holder);
const receiver_balance_after = await erc777Token.balanceOf.call(receiver);
assert.equal(
holder_balance_before - amount,
holder_balance_after.toString(),
'Holder balance was not correctly updated.'
);
assert.equal(
receiver_balance_before.toString(),
receiver_balance_after - amount,
'Receiver balance was not correctly updated.'
);
});
it('...defaultOperator should do operatorSend.', async () => {
const amount = 100;
await erc777Token.mint(holder, amount, { from: defaultOperator });
const holder_balance_before = await erc777Token.balanceOf.call(holder);
const receiver_balance_before = await erc777Token.balanceOf.call(receiver);
await erc777Token.operatorSend(holder, receiver, amount, { from: defaultOperator });
const holder_balance_after = await erc777Token.balanceOf.call(holder);
const receiver_balance_after = await erc777Token.balanceOf.call(receiver);
assert.equal(
holder_balance_before - amount,
holder_balance_after.toString(),
'Holder balance was not correctly updated.'
);
assert.equal(
receiver_balance_before.toString(),
receiver_balance_after - amount,
'Receiver balance was not correctly updated.'
);
});
it('...approved operator should do operatorSend.', async () => {
const amount = 100;
await erc777Token.mint(holder, amount, { from: defaultOperator });
await erc777Token.authorizeOperator(operator, { from: holder });
const holder_balance_before = await erc777Token.balanceOf.call(holder);
const receiver_balance_before = await erc777Token.balanceOf.call(receiver);
await erc777Token.operatorSend(holder, receiver, amount, { from: operator });
const holder_balance_after = await erc777Token.balanceOf.call(holder);
const receiver_balance_after = await erc777Token.balanceOf.call(receiver);
assert.equal(
holder_balance_before - amount,
holder_balance_after.toString(),
'Holder balance was not correctly updated.'
);
assert.equal(
receiver_balance_before.toString(),
receiver_balance_after - amount,
'Receiver balance was not correctly updated.'
);
});
it('...holder should not operatorSend tokens to ZERO_ADDRESS.', async () => {
const amount = 100;
await erc777Token.mint(holder, amount, { from: defaultOperator });
try {
await erc777Token.operatorSend(holder, zeroAddress, amount, { from: holder });
} catch (e) {
revert = e;
}
assert.instanceOf(
revert,
Error,
'OperatorSend (by holder) to ZERO_ADDRESS did not revert.'
)
});
it('...defaultOperator should not operatorSend tokens to ZERO_ADDRESS.', async () => {
const amount = 100;
await erc777Token.mint(holder, amount, { from: defaultOperator });
try {
await erc777Token.operatorSend(holder, zeroAddress, amount, { from: defaultOperator });
} catch (e) {
revert = e;
}
assert.instanceOf(
revert,
Error,
'OperatorSend (by defaultOperator) to ZERO_ADDRESS did not revert.'
)
});
it('...approved operator should not operatorSend tokens to ZERO_ADDRESS.', async () => {
const amount = 100;
await erc777Token.mint(holder, amount, { from: defaultOperator });
await erc777Token.authorizeOperator(operator, { from: holder });
try {
await erc777Token.operatorSend(holder, zeroAddress, amount, { from: operator });
} catch (e) {
revert = e;
}
assert.instanceOf(
revert,
Error,
'OperatorSend (by approved operator) to ZERO_ADDRESS did not revert.'
)
});
it('...non operator should not do operatorSend.', async () => {
const receiver2 = accounts[4];
const amount = 100;
await erc777Token.mint(holder, amount, { from: defaultOperator });
try {
await erc777Token.operatorSend(holder, receiver2, amount, { from: receiver });
} catch (e) {
revert = e;
}
assert.instanceOf(
revert,
Error,
'OperatorSend from non operator did not revert.'
);
});
it('...holder should do burn.', async () => {
const amount = 100;
await erc777Token.mint(holder, amount, { from: defaultOperator });
const holder_balance_before = await erc777Token.balanceOf.call(holder);
const totalSupply_before = await erc777Token.totalSupply.call();
await erc777Token.burn(amount, { from: holder });
const holder_balance_after = await erc777Token.balanceOf.call(holder);
const totalSupply_after = await erc777Token.totalSupply.call();
assert.equal(
totalSupply_before - amount,
totalSupply_after.toString(),
'TotalSupply was not correcty updated.'
);
assert.equal(
holder_balance_before - amount,
holder_balance_after.toString(),
'Holder balance was not correctly updated.'
);
});
it('...defaultOperator should do operatorBurn.', async () => {
const amount = 100;
await erc777Token.mint(holder, amount, { from: defaultOperator });
const holder_balance_before = await erc777Token.balanceOf.call(holder);
const totalSupply_before = await erc777Token.totalSupply.call();
await erc777Token.operatorBurn(holder, amount, { from: defaultOperator });
const holder_balance_after = await erc777Token.balanceOf.call(holder);
const totalSupply_after = await erc777Token.totalSupply.call();
assert.equal(
holder_balance_before - amount,
holder_balance_after.toString(),
'Holder balance was not correctly updated.'
);
assert.equal(
totalSupply_before - amount,
totalSupply_after.toString(),
'TotalSupply was not correcty updated.'
);
});
it('...approved operator should do operatorBurn.', async () => {
const amount = 100;
await erc777Token.mint(holder, amount, { from: defaultOperator });
await erc777Token.authorizeOperator(operator, { from: holder })
const holder_balance_before = await erc777Token.balanceOf.call(holder);
const totalSupply_before = await erc777Token.totalSupply.call();
await erc777Token.operatorBurn(holder, amount, { from: operator });
const holder_balance_after = await erc777Token.balanceOf.call(holder);
const totalSupply_after = await erc777Token.totalSupply.call();
assert.equal(
holder_balance_before - amount,
holder_balance_after.toString(),
'Holder balance was not correctly updated.'
);
assert.equal(
totalSupply_before - amount,
totalSupply_after.toString(),
'TotalSupply was not correcty updated.'
);
});
it('...holder should do operatorBurn.', async () => {
const amount = 100;
await erc777Token.mint(holder, amount, { from: defaultOperator });
await erc777Token.authorizeOperator(operator, { from: holder })
const holder_balance_before = await erc777Token.balanceOf.call(holder);
const totalSupply_before = await erc777Token.totalSupply.call();
await erc777Token.operatorBurn(holder, amount, { from: holder });
const holder_balance_after = await erc777Token.balanceOf.call(holder);
const totalSupply_after = await erc777Token.totalSupply.call();
assert.equal(
holder_balance_before - amount,
holder_balance_after.toString(),
'Holder balance was not correctly updated.'
);
assert.equal(
totalSupply_before - amount,
totalSupply_after.toString(),
'TotalSupply was not correcty updated.'
);
});
it('...non operator should not do operatorBurn.', async () => {
const amount = 100;
await erc777Token.mint(holder, amount, { from: defaultOperator });
try {
await erc777Token.operatorBurn(holder, amount, { from: holder });
} catch (e) {
revert = e;
}
assert.instanceOf(
revert,
Error,
'OperatorBurn from non operator did not revert.'
)
});
it('...should not accept ETH.', async () => {
const amount = 100;
await erc777Token.mint(holder, amount, { from: defaultOperator });
const accBalance = await web3.eth.getBalance(holder);
const oneEth = await web3.utils.toWei('1', 'ether');
try {
await web3.eth.sendTransaction({ from: holder, to: erc777Token.address, value: oneEth });
} catch (e) {
revert = e;
}
assert.isOk(
accBalance >= oneEth,
'Account was not funded well enough.'
);
assert.instanceOf(
revert,
Error,
'Ether send to contract did not revert.'
);
});
it('...defaultOperator should not mint with wrong granularity.', async () => {
const wrongAmount = 101;
try {
await erc777Token.mint(holder, wrongAmount, { from: defaultOperator });
} catch (e) {
revert = e;
}
assert.instanceOf(
revert,
Error,
'Mint with wrong granularity did not revert.'
);
});
it('...holder should not send with wrong granularity.', async () => {
const amount = 200;
const wrongAmount = 101;
await erc777Token.mint(holder, amount, { from: defaultOperator });
try {
await erc777Token.send(receiver, wrongAmount, { from: holder });
} catch (e) {
revert = e;
}
assert.instanceOf(
revert,
Error,
'Send with wrong granularity did not revert.'
);
});
it('...holder should not operatorSend with wrong granularity.', async () => {
const amount = 200;
const wrongAmount = 101;
await erc777Token.mint(holder, amount, { from: defaultOperator });
try {
await erc777Token.operatorSend(holder, receiver, wrongAmount, { from: holder });
} catch (e) {
revert = e;
}
assert.instanceOf(
revert,
Error,
'OperatorSend (by holder) with wrong granularity did not revert.'
);
});
it('...approved operator should not operatorSend with wrong granularity.', async () => {
const amount = 200;
const wrongAmount = 101;
await erc777Token.mint(holder, amount, { from: defaultOperator });
await erc777Token.authorizeOperator(operator, { from: holder })
try {
await erc777Token.operatorSend(holder, receiver, wrongAmount, { from: operator });
} catch (e) {
revert = e;
}
assert.instanceOf(
revert,
Error,
'OperatorSend (by approved operator) with wrong granularity did not revert.'
);
});
it('...defaultOperator should not operatorSend with wrong granularity.', async () => {
const amount = 200;
const wrongAmount = 101;
await erc777Token.mint(holder, amount, { from: defaultOperator });
try {
await erc777Token.operatorSend(holder, receiver, wrongAmount, { from: defaultOperator });
} catch (e) {
revert = e;
}
assert.instanceOf(
revert,
Error,
'OperatorSend (by defaultOperator) with wrong granularity did not revert.'
);
});
it('...holder should not burn with wrong granularity.', async () => {
const amount = 200;
const wrongAmount = 101;
await erc777Token.mint(holder, amount, { from: defaultOperator });
try {
await erc777Token.burn(wrongAmount, { from: holder });
} catch (e) {
revert = e;
}
assert.instanceOf(
revert,
Error,
'OperatorSend (by holder) with wrong granularity did not revert.'
);
});
it('...approved operator should not operatorBurn with wrong granularity.', async () => {
const amount = 200;
const wrongAmount = 101;
await erc777Token.mint(holder, amount, { from: defaultOperator });
await erc777Token.authorizeOperator(operator, { from: holder });
try {
await erc777Token.operatorBurn(holder, wrongAmount, { from: operator });
} catch (e) {
revert = e;
}
assert.instanceOf(
revert,
Error,
'OperatorBurn (by approved operator) with wrong granularity did not revert.'
);
});
it('...defaultOperator should not burn with wrong granularity.', async () => {
const amount = 200;
const wrongAmount = 101;
await erc777Token.mint(holder, amount, { from: defaultOperator });
try {
await erc777Token.operatorBurn(holder, wrongAmount, { from: defaultOperator });
} catch (e) {
revert = e;
}
assert.instanceOf(
revert,
Error,
'OperatorBurn (by approved operator) with wrong granularity did not revert.'
);
});
/*
TODO: Test hooks
- should call hooks on:
- holder send
- operator send
- mint
- burn
- operatorBurn
*/
/*
it('...should call `tokensReceived` hook.', async () => {
const erc777Receiver = await erc777TokenReceiver.new({ from: receiver });
const amount = 200;
await erc777Token.mint(holder, amount, { from: defaultOperator });
const holder_balance_before = await erc777Token.balanceOf.call(holder);
const receiver_balance_before = await erc777Token.balanceOf.call(erc777Receiver.address);
const result1 = await erc777Token.send(erc777Receiver.address, amount, { from: holder });
console.log(result1)
const result2 = await erc777Receiver.tokensReceived(holder, holder, erc777Receiver.address, amount, null, null)
console.log(result2)
const holder_balance_after = await erc777Token.balanceOf.call(holder);
const receiver_balance_after = await erc777Token.balanceOf.call(erc777Receiver.address);
assert.equal(
holder_balance_before - amount,
holder_balance_after.toString(),
'Holder balance was not correctly updated.'
);
assert.equal(
receiver_balance_before.toString(),
receiver_balance_after - amount,
'Receiver balance was not correctly updated.'
);
});
*/
/* TODO
it('...should call `tokensToSend` hook.', async () => {
});
*/
it('...should not deploy with granularity of 0.', async () => {
try {
await erc777.new(
args.name,
args.symbol,
args.totalSupply,
0,
args.defaultOperators,
{ from: defaultOperator }
);
} catch (e) {
revert = e;
}
assert.instanceOf(
revert,
Error,
'Deploy with granularity of 0 did not revert.'
);
});
// Test event logging
it('...should log Minted on mint().', async () => {
/*
_operator: indexed(address), # Address which triggered the mint.
_to: indexed(address), # Recipient of the tokens.
_amount: uint256, # Number of tokens minted.
_data: bytes[256], # Information provided for the recipient.
_operatorData: bytes[256] # Information provided by the operator.
*/
const amount = 100;
const res = await erc777Token.mint(holder, amount, { from: defaultOperator });
const log = res.logs.find(element => element.event.match('Mint'));
assert.strictEqual(log.args._operator, defaultOperator);
assert.strictEqual(log.args._to, holder);
assert.equal(log.args._amount.toString(), amount);
assert.strictEqual(log.args._data, null);
assert.strictEqual(log.args._operatorData, null);
})
it('...should log Sent on send().', async () => {
/*
_operator: indexed(address), # Address which triggered the send.
_from: indexed(address), # Token holder.
_to: indexed(address), # Token recipient.
_amount: uint256, # Number of tokens to send.
_data: bytes[256], # Information provided by the token holder.
_operatorData: bytes[256] # Information provided by the operator.
*/
const amount = 100;
await erc777Token.mint(holder, amount, { from: defaultOperator });
const res = await erc777Token.send(receiver, amount, { from: holder });
const log = res.logs.find(element => element.event.match('Sent'));
assert.strictEqual(log.args._operator, holder);
assert.strictEqual(log.args._from, holder);
assert.strictEqual(log.args._to, receiver);
assert.equal(log.args._amount.toString(), amount);
assert.strictEqual(log.args._data, null);
assert.strictEqual(log.args._operatorData, null);
})
it('...should log Sent on operatorSend().', async () => {
/*
_operator: indexed(address), # Address which triggered the send.
_from: indexed(address), # Token holder.
_to: indexed(address), # Token recipient.
_amount: uint256, # Number of tokens to send.
_data: bytes[256], # Information provided by the token holder.
_operatorData: bytes[256] # Information provided by the operator.
*/
const amount = 100;
await erc777Token.mint(holder, amount, { from: defaultOperator });
const res = await erc777Token.operatorSend(holder, receiver, amount, { from: holder });
const log = res.logs.find(element => element.event.match('Sent'));
assert.strictEqual(log.args._operator, holder);
assert.strictEqual(log.args._from, holder);
assert.strictEqual(log.args._to, receiver);
assert.equal(log.args._amount.toString(), amount);
assert.strictEqual(log.args._data, null);
assert.strictEqual(log.args._operatorData, null);
})
it('...should log Burned on burn().', async () => {
/*
_operator: indexed(address), # Address which triggered the burn.
_from: indexed(address), # Token holder whose tokens are burned.
_amount: uint256, # Token holder whose tokens are burned.
_data: bytes[256], # Information provided by the token holder.
_operatorData: bytes[256] # Information provided by the operator.
*/
const amount = 100;
await erc777Token.mint(holder, amount, { from: defaultOperator });
const res = await erc777Token.burn(amount, { from: holder });
const log = res.logs.find(element => element.event.match('Burned'));
assert.strictEqual(log.args._operator, holder);
assert.strictEqual(log.args._from, holder);
assert.equal(log.args._amount.toString(), amount);
assert.strictEqual(log.args._data, null);
assert.strictEqual(log.args._operatorData, null);
})
it('...should log Burned on operatorBurn().', async () => {
/*
_operator: indexed(address), # Address which triggered the burn.
_from: indexed(address), # Token holder whose tokens are burned.
_amount: uint256, # Token holder whose tokens are burned.
_data: bytes[256], # Information provided by the token holder.
_operatorData: bytes[256] # Information provided by the operator.
*/
const amount = 100;
await erc777Token.mint(holder, amount, { from: defaultOperator });
await erc777Token.authorizeOperator(operator, { from: holder })
const res = await erc777Token.operatorBurn(holder, amount, { from: operator });
const log = res.logs.find(element => element.event.match('Burned'));
assert.strictEqual(log.args._operator, operator);
assert.strictEqual(log.args._from, holder);
assert.equal(log.args._amount.toString(), amount);
assert.strictEqual(log.args._data, null);
assert.strictEqual(log.args._operatorData, null);
})
it('...should log AuthorizedOperator on authorizeOperator().', async () => {
/*
_operator: indexed(address), # Address which became an operator of tokenHolder.
_holder: indexed(address) # Address of a token holder which authorized the operator address as an operator.
*/
const newOperator = accounts[2];
const res = await erc777Token.authorizeOperator(newOperator, { from: holder });
const log = res.logs.find(element => element.event.match('AuthorizedOperator'));
assert.strictEqual(log.args._operator, newOperator);
assert.strictEqual(log.args._holder, holder);
})
it('...should log RevokedOperator on revokeOperator().', async () => {
/*
_operator: indexed(address), # Address which was revoked as an operator of tokenHolder.
_holder: indexed(address) # Address of a token holder which revoked the operator address as an operator.
*/
await erc777Token.authorizeOperator(operator, { from: holder });
const res = await erc777Token.revokeOperator(operator, { from: holder });
const log = res.logs.find(element => element.event.match('RevokedOperator'));
assert.strictEqual(log.args._operator, operator);
assert.strictEqual(log.args._holder, holder);
})
// TODO: Test use of data and opeator data in all variations (send, transfer, events, etc.)
// TODO: Test send/operatorSend/mint/burn with negative values
// TODO: Test send/operatorSend/mint/burn with zero values
// TODO: Test send/operatorSend/mint/burn with using default parameters
});