forked from holographxyz/holograph-protocol
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path20_royalties_tests.ts
765 lines (621 loc) · 29.9 KB
/
20_royalties_tests.ts
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
import { expect } from 'chai';
import { ethers } from 'hardhat';
import { HolographRoyalties, MockExternalCall, MockExternalCall__factory } from '../typechain-types';
import { functionHash, generateInitCode } from '../scripts/utils/helpers';
import setup, { PreTest } from './utils';
import {
HOLOGRAPHER_ALREADY_INITIALIZED_ERROR_MSG,
ROYALTIES_ONLY_OWNER_ERROR_MSG,
ROYALTIES_ALREADY_INITIALIZED_ERROR_MSG,
} from './utils/error_constants';
import { SignerWithAddress } from '@nomiclabs/hardhat-ethers/signers';
describe('HolographRoyalties Contract', async function () {
let royalties: HolographRoyalties;
let chain1: PreTest;
let mockExternalCall: MockExternalCall;
let owner: SignerWithAddress;
let notOwner: SignerWithAddress;
const createRandomAddress = () => ethers.Wallet.createRandom().address;
let anyAddress = createRandomAddress();
before(async function () {
chain1 = await setup();
owner = chain1.deployer;
notOwner = chain1.wallet1;
royalties = chain1.royalties.attach(chain1.sampleErc721Holographer.address);
const mockExternalCallFactory = await ethers.getContractFactory<MockExternalCall__factory>('MockExternalCall');
mockExternalCall = await mockExternalCallFactory.deploy();
await mockExternalCall.deployed();
});
async function testExternalCallToFunction(fnAbi: string, fnName: string, args: any[] = []) {
const ABI = [fnAbi];
const iface = new ethers.utils.Interface(ABI);
const encodedFunctionData = iface.encodeFunctionData(fnName, args);
await expect(mockExternalCall.connect(notOwner).callExternalFn(royalties.address, encodedFunctionData)).to.not.be
.reverted;
}
describe('init()', async function () {
it('should fail if already initialized', async function () {
const initCode = generateInitCode(['address'], [chain1.wallet2.address]);
await expect(royalties.connect(owner).init(initCode)).to.be.revertedWith(
HOLOGRAPHER_ALREADY_INITIALIZED_ERROR_MSG
);
});
});
describe('initHolographRoyalties()', () => {
it('should fail be initialized twice', async function () {
const initCode = generateInitCode(['uint256', 'uint256'], [100, 0]);
await expect(royalties.connect(owner).initHolographRoyalties(initCode)).to.be.revertedWith(
ROYALTIES_ALREADY_INITIALIZED_ERROR_MSG
);
});
});
describe('owner()', async function () {
it('should return the correct owner address', async function () {
const ownerAddress = await royalties.owner();
expect(ownerAddress).to.equal(owner.address);
});
it('should fail when comparing to wrong address', async function () {
const ownerAddress = await royalties.owner();
expect(ownerAddress).to.not.equal(notOwner);
});
it('should allow external contract to call fn', async function () {
await testExternalCallToFunction('function owner() external view returns (address)', 'owner');
});
});
describe('isOwner()', async function () {
it('is private function', async function () {
//@ts-ignore
expect(typeof royalties.connect(owner).isOwner).to.equal('undefined');
expect(royalties.connect(owner)).to.not.have.keys('isOwner');
});
});
describe('_getDefaultReceiver()', () => {
it('is private function', async function () {
//@ts-ignore
expect(typeof royalties.connect(owner)._getDefaultReceiver).to.equal('undefined');
expect(royalties.connect(owner)).to.not.have.keys('_getDefaultReceiver');
});
});
describe('_setDefaultReceiver()', () => {
it('is private function', async function () {
//@ts-ignore
expect(typeof royalties.connect(owner)._setDefaultReceiver).to.equal('undefined');
expect(royalties.connect(owner)).to.not.have.keys('_setDefaultReceiver');
});
});
describe('_getDefaultBp()', () => {
it('is private function', async function () {
//@ts-ignore
expect(typeof royalties.connect(owner)._getDefaultBp).to.equal('undefined');
expect(royalties.connect(owner)).to.not.have.keys('_getDefaultBp');
});
});
describe('_setDefaultBp()', () => {
it('is private function', async function () {
//@ts-ignore
expect(typeof royalties.connect(owner)._setDefaultBp).to.equal('undefined');
expect(royalties.connect(owner)).to.not.have.keys('_setDefaultBp');
});
});
describe('_getReceiver()', () => {
it('is private function', async function () {
//@ts-ignore
expect(typeof royalties.connect(owner)._getReceiver).to.equal('undefined');
expect(royalties.connect(owner)).to.not.have.keys('_getReceiver');
});
});
describe('_setReceiver()', () => {
it('is private function', async function () {
//@ts-ignore
expect(typeof royalties.connect(owner)._setReceiver).to.equal('undefined');
expect(royalties.connect(owner)).to.not.have.keys('_setReceiver');
});
});
describe('_getBp()', () => {
it('is private function', async function () {
//@ts-ignore
expect(typeof royalties.connect(owner)._getBp).to.equal('undefined');
expect(royalties.connect(owner)).to.not.have.keys('_getBp');
});
});
describe('_setBp()', () => {
it('is private function', async function () {
//@ts-ignore
expect(typeof royalties.connect(owner)._setBp).to.equal('undefined');
expect(royalties.connect(owner)).to.not.have.keys('_setBp');
});
});
describe('_getPayoutAddresses()', () => {
it('is private function', async function () {
//@ts-ignore
expect(typeof royalties.connect(owner)._getPayoutAddresses).to.equal('undefined');
expect(royalties.connect(owner)).to.not.have.keys('_getPayoutAddresses');
});
});
describe('_setPayoutAddresses()', () => {
it('is private function', async function () {
//@ts-ignore
expect(typeof royalties.connect(owner)._setPayoutAddresses).to.equal('undefined');
expect(royalties.connect(owner)).to.not.have.keys('_setPayoutAddresses');
});
});
describe('_getPayoutBps()', () => {
it('is private function', async function () {
//@ts-ignore
expect(typeof royalties.connect(owner)._getPayoutBps).to.equal('undefined');
expect(royalties.connect(owner)).to.not.have.keys('_getPayoutBps');
});
});
describe('_setPayoutBps()', () => {
it('is private function', async function () {
//@ts-ignore
expect(typeof royalties.connect(owner)._setPayoutBps).to.equal('undefined');
expect(royalties.connect(owner)).to.not.have.keys('_setPayoutBps');
});
});
describe('_getTokenAddress()', () => {
it('is private function', async function () {
//@ts-ignore
expect(typeof royalties.connect(owner)._getTokenAddress).to.equal('undefined');
expect(royalties.connect(owner)).to.not.have.keys('_getTokenAddress');
});
});
describe('_setTokenAddress()', () => {
it('is private function', async function () {
//@ts-ignore
expect(typeof royalties.connect(owner)._setTokenAddress).to.equal('undefined');
expect(royalties.connect(owner)).to.not.have.keys('_setTokenAddress');
});
});
describe('_payoutEth()', () => {
it('is private function', async function () {
//@ts-ignore
expect(typeof royalties.connect(owner)._payoutEth).to.equal('undefined');
expect(royalties.connect(owner)).to.not.have.keys('_payoutEth');
});
});
describe('_payoutToken()', () => {
it('is private function', async function () {
//@ts-ignore
expect(typeof royalties.connect(owner)._payoutToken).to.equal('undefined');
expect(royalties.connect(owner)).to.not.have.keys('_payoutToken');
});
});
describe('_payoutTokens()', () => {
it('is private function', async function () {
//@ts-ignore
expect(typeof royalties.connect(owner)._payoutTokens).to.equal('undefined');
expect(royalties.connect(owner)).to.not.have.keys('_payoutTokens');
});
});
describe('_validatePayoutRequestor()', () => {
it('is private function', async function () {
//@ts-ignore
expect(typeof royalties.connect(owner)._validatePayoutRequestor).to.equal('undefined');
expect(royalties.connect(owner)).to.not.have.keys('_validatePayoutRequestor');
});
});
describe('configurePayouts', () => {
it('should be callable by the owner', async () => {
const addresses = [owner.address, mockExternalCall.address];
const bps = [5000, 5000];
let data = (await royalties.populateTransaction.configurePayouts(addresses, bps)).data || '';
const tx = await chain1.factory.connect(owner).adminCall(royalties.address, data);
await tx.wait();
const payoutInfo = await royalties.getPayoutInfo();
expect(addresses).deep.equal(payoutInfo.addresses);
expect(bps).deep.equal(payoutInfo.bps.map((bg) => bg.toNumber()));
});
it('should fail if the arguments arrays have different lenghts', async () => {
const addresses = [anyAddress];
const bps = [1000, 9000];
let data = (await royalties.populateTransaction.configurePayouts(addresses, bps)).data || '';
await expect(chain1.factory.connect(owner).adminCall(royalties.address, data)).to.be.revertedWith(
'ROYALTIES: missmatched lenghts'
);
});
it('should fail if there are more than 10 payout addresses', async () => {
const addresses = Array.from({ length: 11 }, () => anyAddress);
const bps = Array.from({ length: 11 }, () => 10);
let data = (await royalties.populateTransaction.configurePayouts(addresses, bps)).data || '';
await expect(chain1.factory.connect(owner).adminCall(royalties.address, data)).to.be.revertedWith(
'ROYALTIES: max 10 addresses'
);
});
it("should fail if the bps down't equal 10000", async () => {
const addresses = [anyAddress];
const bps = [100];
let data = (await royalties.populateTransaction.configurePayouts(addresses, bps)).data || '';
await expect(chain1.factory.connect(owner).adminCall(royalties.address, data)).to.be.revertedWith(
'ROYALTIES: bps must equal 10000'
);
});
it('should fail if it is not the owner calling it', async () => {
await expect(royalties.connect(notOwner).configurePayouts([createRandomAddress()], [1000])).to.be.revertedWith(
ROYALTIES_ONLY_OWNER_ERROR_MSG
);
});
});
describe('getPayoutInfo()', () => {
it('anyone should be able to call the fn', async () => {
await expect(royalties.getPayoutInfo()).to.not.be.reverted;
});
it('should allow external contract to call fn', async () => {
await testExternalCallToFunction(
'function getPayoutInfo() public view returns (address[] memory addresses, uint256[] memory bps)',
'getPayoutInfo'
);
});
it('should allow inherited contract to call fn');
});
describe('getEthPayout()', () => {
it.skip('the owner should be able to call the fn', async () => {
//TODO: wait for contract changes, if the contract balance is less than the gasCost it should revert with a error msg
let data = (await royalties.populateTransaction.getEthPayout()).data || '';
const tx = await chain1.factory.connect(owner).adminCall(royalties.address, data);
await tx.wait();
});
it.skip('A authorized address should be able to call the fn', async () => {
//TODO: wait for contract changes, if the contract balance is less than the gasCost it should revert with a error msg
await testExternalCallToFunction('function getEthPayout() public ', 'getEthPayout');
});
it('Should fail if sender is not authorized', async () => {
await expect(royalties.connect(notOwner).getEthPayout()).to.be.revertedWith('ROYALTIES: sender not authorized');
});
});
describe('getTokenPayout()', () => {
it.skip('the owner should be able to call the fn', async () => {
//TODO: wait for contract changes, if the contract balance is less than the gasCost it should revert with a error msg
let data = (await royalties.populateTransaction.getTokenPayout(owner.address)).data || '';
const tx = await chain1.factory.connect(owner).adminCall(royalties.address, data);
await tx.wait();
});
it.skip('A authorized address should be able to call the fn', async () => {
//TODO: wait for contract changes, if the contract balance is less than the gasCost it should revert with a error msg
await testExternalCallToFunction('function getTokenPayout(address tokenAddress) public', 'getTokenPayout', [
mockExternalCall.address,
]);
});
it('Should fail if sender is not authorized', async () => {
await expect(royalties.connect(notOwner).getEthPayout()).to.be.revertedWith('ROYALTIES: sender not authorized');
});
});
describe('getTokensPayout()', () => {
it.skip('the owner should be able to call the fn', async () => {
//TODO: wait for contract changes, if the contract balance is less than the gasCost it should revert with a error msg
let data = (await royalties.populateTransaction.getTokensPayout([owner.address])).data || '';
const tx = await chain1.factory.connect(owner).adminCall(royalties.address, data);
await tx.wait();
});
it.skip('A authorized address should be able to call the fn', async () => {
//TODO: wait for contract changes, if the contract balance is less than the gasCost it should revert with a error msg
await testExternalCallToFunction(
'function getTokensPayout(address[] memory tokenAddresses) public',
'getTokensPayout',
[[mockExternalCall.address]]
);
});
it('Should fail if sender is not authorized', async () => {
await expect(royalties.connect(notOwner).getTokenPayout(owner.address)).to.be.revertedWith(
'ROYALTIES: sender not authorized'
);
});
});
describe('setRoyalties', () => {
it('should be callable by the owner', async () => {});
it('should fail if it is not the owner calling it', async () => {
await expect(royalties.connect(notOwner).setRoyalties(1, createRandomAddress(), 1000)).to.be.revertedWith(
ROYALTIES_ONLY_OWNER_ERROR_MSG
);
});
});
describe('royaltyInfo()', () => {
it('anyone should be able to call the fn', async () => {
await expect(royalties.royaltyInfo(1, 10)).to.not.be.reverted;
});
it('should allow external contract to call fn', async () => {
await testExternalCallToFunction(
'function royaltyInfo(uint256 tokenId, uint256 value) public view returns (address, uint256)',
'royaltyInfo',
[1, 10]
);
});
it('should allow inherited contract to call fn');
});
describe('getFeeBps()', () => {
it('anyone should be able to call the fn', async () => {
await expect(royalties.getFeeBps(1)).to.not.be.reverted;
});
it('should allow external contract to call fn', async () => {
await testExternalCallToFunction(
'function getFeeBps(uint256 tokenId) public view returns (uint256[] memory)',
'getFeeBps',
[1]
);
});
it('should allow inherited contract to call fn');
});
describe('getFeeRecipients()', () => {
it('anyone should be able to call the fn', async () => {
await expect(royalties.getFeeRecipients(1)).to.not.be.reverted;
});
it('should allow external contract to call fn', async () => {
await testExternalCallToFunction(
'function getFeeRecipients(uint256 tokenId) public view returns (address[] memory)',
'getFeeRecipients',
[1]
);
});
it('should allow inherited contract to call fn');
});
describe('getRoyalties()', () => {
it('anyone should be able to call the fn', async () => {
await expect(royalties.getRoyalties(1)).to.not.be.reverted;
});
it('should allow external contract to call fn', async () => {
await testExternalCallToFunction(
'function getRoyalties(uint256 tokenId) public view returns (address[] memory, uint256[] memory)',
'getRoyalties',
[1]
);
});
it('should allow inherited contract to call fn');
});
describe('getFees()', () => {
it('anyone should be able to call the fn', async () => {
await expect(royalties.getFees(1)).to.not.be.reverted;
});
it('should allow external contract to call fn', async () => {
await testExternalCallToFunction(
'function getFees(uint256 tokenId) public view returns (address[] memory, uint256[] memory)',
'getFees',
[1]
);
});
it('should allow inherited contract to call fn');
});
describe('tokenCreator()', () => {
it('anyone should be able to call the fn', async () => {
await expect(royalties.tokenCreators(0)).to.not.be.reverted;
});
it('should allow external contract to call fn', async () => {
await testExternalCallToFunction(
'function tokenCreators(uint256 tokenId) public view returns (address)',
'tokenCreators',
[0]
);
});
it('should allow inherited contract to call fn');
});
describe('calculateRoyaltyFee()', () => {
it('anyone should be able to call the fn', async () => {
await expect(royalties.calculateRoyaltyFee(createRandomAddress(), 1, 1)).to.not.be.reverted;
});
it('should allow external contract to call fn', async () => {
await testExternalCallToFunction(
'function calculateRoyaltyFee(address, uint256 tokenId, uint256 amount) public view returns (uint256)',
'calculateRoyaltyFee',
[createRandomAddress(), 1, 1]
);
});
it('should allow inherited contract to call fn');
});
describe('marketContract()', () => {
it('anyone should be able to call the fn', async () => {
expect(await royalties.marketContract()).to.equal(royalties.address);
});
it('should allow external contract to call fn', async () => {
await testExternalCallToFunction('function marketContract() public view returns (address)', 'marketContract');
});
it('should allow inherited contract to call fn');
});
describe('tokenCreators()', () => {
it('anyone should be able to call the fn', async () => {
await expect(royalties.tokenCreators(1)).to.not.be.reverted;
});
it('should allow external contract to call fn', async () => {
await testExternalCallToFunction(
'function tokenCreators(uint256 tokenId) public view returns (address)',
'tokenCreators',
[1]
);
});
it('should allow inherited contract to call fn');
});
describe('bidSharesForToken()', () => {
it('anyone should be able to call the fn', async () => {
await expect(royalties.bidSharesForToken(0)).to.not.be.reverted;
});
it('should allow external contract to call fn', async () => {
await testExternalCallToFunction(
'function bidSharesForToken(uint256 tokenId) public view returns (((uint256),(uint256),(uint256)) memory bidShares)',
'bidSharesForToken',
[0]
);
});
it('should allow inherited contract to call fn');
});
describe('getTokenAddress()', () => {
const tokenName = `Sample ERC721 Contract (${chain1.network.holographId.toString()})`;
it('anyone should be able to call the fn', async () => {
await expect(royalties.getTokenAddress(tokenName)).to.not.be.reverted;
});
it('should allow external contract to call fn', async () => {
await testExternalCallToFunction(
'function getTokenAddress(string memory tokenName) public view returns (address)',
'getTokenAddress',
[tokenName]
);
});
it('should allow inherited contract to call fn');
});
describe('Royalties Distribution Validation', () => {
const errorMargin = ethers.utils.parseUnits('2000', 'wei');
describe('A collection with 1 recipient', async () => {
const totalRoyalties = ethers.utils.parseEther('1');
before(async () => {
const data = (await royalties.populateTransaction.configurePayouts([owner.address], [10000])).data || '';
const tx = await chain1.factory.connect(owner).adminCall(royalties.address, data);
await tx.wait();
});
it('should be able to withdraw all native token balance', async () => {
await owner.sendTransaction({
to: royalties.address,
value: totalRoyalties,
});
const accountBalanceBefore = await ethers.provider.getBalance(owner.address);
const contractBalanceBefore = await ethers.provider.getBalance(royalties.address);
const data = (await royalties.populateTransaction.getEthPayout()).data || '';
const tx = await chain1.factory.connect(owner).adminCall(royalties.address, data);
await tx.wait();
const accountBalanceAfter = await ethers.provider.getBalance(owner.address);
const contractBalanceAfter = await ethers.provider.getBalance(royalties.address);
expect(contractBalanceAfter).to.be.lt(contractBalanceBefore);
expect(accountBalanceAfter).to.be.gt(accountBalanceBefore);
});
it('should be able to withdraw balance of an ERC20 token', async () => {
const ERC20 = await chain1.holographErc20.attach(chain1.sampleErc20Holographer.address);
const SAMPLEERC20 = await chain1.sampleErc20.attach(chain1.sampleErc20Holographer.address);
await SAMPLEERC20.mint(owner.address, totalRoyalties);
await ERC20.transfer(royalties.address, totalRoyalties);
const contractBalanceBefore = await ERC20.balanceOf(royalties.address);
const accountBalanceBefore = await ERC20.balanceOf(owner.address);
const data = (await royalties.populateTransaction.getTokenPayout(ERC20.address)).data || '';
const tx = await chain1.factory.connect(owner).adminCall(royalties.address, data);
await tx.wait();
const accountBalanceAfter = await ERC20.balanceOf(owner.address);
const contractBalanceAfter = await ERC20.balanceOf(royalties.address);
expect(contractBalanceAfter).to.be.lt(contractBalanceBefore);
expect(accountBalanceAfter).to.be.gt(accountBalanceBefore);
});
});
describe('A collection has 2 recipients with a 60% / 40% split', () => {
const totalRoyalties = ethers.utils.parseEther('10');
before(async () => {
const data =
(await royalties.populateTransaction.configurePayouts([anyAddress, notOwner.address], [6000, 4000])).data ||
'';
const tx = await chain1.factory.connect(owner).adminCall(royalties.address, data);
await tx.wait();
});
it('should be able to withdraw all native token balance', async () => {
await owner.sendTransaction({
to: royalties.address,
value: totalRoyalties,
});
const accountABalanceBefore = await ethers.provider.getBalance(anyAddress);
const accountBBalanceBefore = await ethers.provider.getBalance(notOwner.address);
const contractBalanceBefore = await ethers.provider.getBalance(royalties.address);
const data = (await royalties.populateTransaction.getEthPayout()).data || '';
const tx = await chain1.factory.connect(owner).adminCall(royalties.address, data);
await tx.wait();
const accountABalanceAfter = await ethers.provider.getBalance(anyAddress);
const accountBBalanceAfter = await ethers.provider.getBalance(notOwner.address);
const contractBalanceAfter = await ethers.provider.getBalance(royalties.address);
const sixtyPercentOfRoyalties = contractBalanceBefore.sub(contractBalanceAfter).mul(60).div(100);
const fortyPercentOfRoyalties = contractBalanceBefore.sub(contractBalanceAfter).mul(40).div(100);
expect(contractBalanceAfter).to.be.lt(contractBalanceBefore);
expect(Number(accountABalanceAfter)).to.be.approximately(
Number(sixtyPercentOfRoyalties.add(accountABalanceBefore)),
Number(errorMargin)
);
expect(Number(accountBBalanceAfter)).to.be.approximately(
Number(fortyPercentOfRoyalties.add(accountBBalanceBefore)),
Number(errorMargin)
);
});
it('should be able to withdraw balance of an ERC20 token', async () => {
const ERC20 = await chain1.holographErc20.attach(chain1.sampleErc20Holographer.address);
const SAMPLEERC20 = await chain1.sampleErc20.attach(chain1.sampleErc20Holographer.address);
await SAMPLEERC20.mint(owner.address, totalRoyalties);
await ERC20.transfer(royalties.address, totalRoyalties);
const contractBalanceBefore = await ERC20.balanceOf(royalties.address);
const accountABalanceBefore = await ERC20.balanceOf(anyAddress);
const accountBBalanceBefore = await ERC20.balanceOf(notOwner.address);
const data = (await royalties.populateTransaction.getTokenPayout(ERC20.address)).data || '';
const tx = await chain1.factory.connect(owner).adminCall(royalties.address, data);
await tx.wait();
const accountABalanceAfter = await ERC20.balanceOf(anyAddress);
const accountBBalanceAfter = await ERC20.balanceOf(notOwner.address);
const contractBalanceAfter = await ERC20.balanceOf(royalties.address);
const sixtyPercentOfRoyalties = contractBalanceBefore.sub(contractBalanceAfter).mul(60).div(100);
const fortyPercentOfRoyalties = contractBalanceBefore.sub(contractBalanceAfter).mul(40).div(100);
expect(contractBalanceAfter).to.be.lt(contractBalanceBefore);
expect(accountABalanceAfter).to.be.equal(accountABalanceBefore.add(sixtyPercentOfRoyalties));
expect(accountBBalanceAfter).to.be.equal(accountBBalanceBefore.add(fortyPercentOfRoyalties));
});
});
describe('A collection has 3 recipients with a 20 % / 50% / 30% split', () => {
const totalRoyalties = ethers.utils.parseEther('10');
const mockAddress = createRandomAddress();
before(async () => {
const data =
(
await royalties.populateTransaction.configurePayouts(
[anyAddress, notOwner.address, mockAddress],
[2000, 5000, 3000]
)
).data || '';
const tx = await chain1.factory.connect(owner).adminCall(royalties.address, data);
await tx.wait();
});
it('should be able to withdraw all native token balance', async () => {
await owner.sendTransaction({
to: royalties.address,
value: totalRoyalties,
});
const accountABalanceBefore = await ethers.provider.getBalance(anyAddress);
const accountBBalanceBefore = await ethers.provider.getBalance(notOwner.address);
const accountCBalanceBefore = await ethers.provider.getBalance(mockAddress);
const contractBalanceBefore = await ethers.provider.getBalance(royalties.address);
const data = (await royalties.populateTransaction.getEthPayout()).data || '';
const tx = await chain1.factory.connect(owner).adminCall(royalties.address, data);
await tx.wait();
const accountABalanceAfter = await ethers.provider.getBalance(anyAddress);
const accountBBalanceAfter = await ethers.provider.getBalance(notOwner.address);
const accountCBalanceAfter = await ethers.provider.getBalance(mockAddress);
const contractBalanceAfter = await ethers.provider.getBalance(royalties.address);
const twentyPercentOfRoyalties = contractBalanceBefore.sub(contractBalanceAfter).mul(20).div(100);
const fiftyPercentOfRoyalties = contractBalanceBefore.sub(contractBalanceAfter).mul(50).div(100);
const thirtyPercentOfRoyalties = contractBalanceBefore.sub(contractBalanceAfter).mul(30).div(100);
expect(contractBalanceAfter).to.be.lt(contractBalanceBefore);
expect(Number(accountABalanceAfter)).to.be.approximately(
Number(twentyPercentOfRoyalties.add(accountABalanceBefore)),
Number(errorMargin)
);
expect(Number(accountBBalanceAfter)).to.be.approximately(
Number(fiftyPercentOfRoyalties.add(accountBBalanceBefore)),
Number(errorMargin)
);
expect(Number(accountCBalanceAfter)).to.be.approximately(
Number(thirtyPercentOfRoyalties.add(accountCBalanceBefore)),
Number(errorMargin)
);
});
it('should be able to withdraw balance of an ERC20 token', async () => {
const ERC20 = await chain1.holographErc20.attach(chain1.sampleErc20Holographer.address);
const SAMPLEERC20 = await chain1.sampleErc20.attach(chain1.sampleErc20Holographer.address);
await SAMPLEERC20.mint(owner.address, totalRoyalties);
await ERC20.transfer(royalties.address, totalRoyalties);
const contractBalanceBefore = await ERC20.balanceOf(royalties.address);
const accountABalanceBefore = await ERC20.balanceOf(anyAddress);
const accountBBalanceBefore = await ERC20.balanceOf(notOwner.address);
const accountCBalanceBefore = await ERC20.balanceOf(mockAddress);
const data = (await royalties.populateTransaction.getTokenPayout(ERC20.address)).data || '';
const tx = await chain1.factory.connect(owner).adminCall(royalties.address, data);
await tx.wait();
const accountABalanceAfter = await ERC20.balanceOf(anyAddress);
const accountBBalanceAfter = await ERC20.balanceOf(notOwner.address);
const accountCBalanceAfter = await ERC20.balanceOf(mockAddress);
const contractBalanceAfter = await ERC20.balanceOf(royalties.address);
const twentyPercentOfRoyalties = contractBalanceBefore.sub(contractBalanceAfter).mul(20).div(100);
const fiftyPercentOfRoyalties = contractBalanceBefore.sub(contractBalanceAfter).mul(50).div(100);
const thirtyPercentOfRoyalties = contractBalanceBefore.sub(contractBalanceAfter).mul(30).div(100);
expect(contractBalanceAfter).to.be.lt(contractBalanceBefore);
expect(accountABalanceAfter).to.be.equal(accountABalanceBefore.add(twentyPercentOfRoyalties));
expect(accountBBalanceAfter).to.be.equal(accountBBalanceBefore.add(fiftyPercentOfRoyalties));
expect(accountCBalanceAfter).to.be.equal(accountCBalanceBefore.add(thirtyPercentOfRoyalties));
});
});
});
});