forked from MinaFoundation/mina-fungible-token
-
Notifications
You must be signed in to change notification settings - Fork 0
/
FungibleToken.test.ts
968 lines (868 loc) · 29.4 KB
/
FungibleToken.test.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
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
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
import { equal, rejects } from "node:assert"
import { describe, it } from "node:test"
import {
AccountUpdate,
AccountUpdateForest,
Bool,
DeployArgs,
Int64,
method,
Mina,
Permissions,
PublicKey,
SmartContract,
State,
state,
UInt64,
UInt8,
} from "o1js"
import {
FungibleToken,
FungibleTokenAdmin,
FungibleTokenAdminBase,
FungibleTokenAdminDeployProps,
FungibleTokenErrors,
} from "./index.js"
const proofsEnabled = process.env.SKIP_PROOFS !== "true"
if (!proofsEnabled) console.log("Skipping proof generation in tests.")
const localChain = await Mina.LocalBlockchain({
proofsEnabled,
enforceTransactionLimits: false,
})
Mina.setActiveInstance(localChain)
describe("token integration", async () => {
{
await FungibleToken.compile()
await ThirdParty.compile()
await FungibleTokenAdmin.compile()
await CustomTokenAdmin.compile()
}
const [
tokenAdmin,
newTokenAdmin,
tokenA,
tokenBAdmin,
tokenB,
thirdPartyA,
thirdPartyB,
] = Mina.TestPublicKey.random(7)
const [deployer, sender, receiver] = localChain.testAccounts
const tokenAdminContract = new FungibleTokenAdmin(tokenAdmin)
const newTokenAdminContract = new FungibleTokenAdmin(newTokenAdmin)
const tokenAContract = new FungibleToken(tokenA)
const tokenBAdminContract = new CustomTokenAdmin(tokenBAdmin)
const tokenBContract = new FungibleToken(tokenB)
const thirdPartyAContract = new ThirdParty(thirdPartyA)
const thirdPartyBContract = new ThirdParty(thirdPartyB)
describe("deploy", () => {
it("should deploy token contract A", async () => {
const tx = await Mina.transaction({
sender: deployer,
fee: 1e8,
}, async () => {
AccountUpdate.fundNewAccount(deployer, 3)
await tokenAdminContract.deploy({
adminPublicKey: tokenAdmin,
})
await tokenAContract.deploy({
symbol: "tokA",
src: "https://github.com/MinaFoundation/mina-fungible-token/blob/main/FungibleToken.ts",
})
await tokenAContract.initialize(
tokenAdmin,
UInt8.from(9),
Bool(true),
)
})
tx.sign([
deployer.key,
tokenA.key,
tokenAdmin.key,
])
await tx.prove()
await tx.send()
})
it("should deploy token contract B", async () => {
const tx = await Mina.transaction({
sender: deployer,
fee: 1e8,
}, async () => {
AccountUpdate.fundNewAccount(deployer, 3)
await tokenBAdminContract.deploy({
adminPublicKey: tokenBAdmin,
})
await tokenBContract.deploy({
symbol: "tokB",
src: "https://github.com/MinaFoundation/mina-fungible-token/blob/main/FungibleToken.ts",
})
await tokenBContract.initialize(
tokenBAdmin,
UInt8.from(9),
Bool(false),
)
})
tx.sign([deployer.key, tokenB.key, tokenBAdmin.key])
await tx.prove()
await tx.send()
})
it("should deploy a third party contract", async () => {
const tx = await Mina.transaction({
sender: deployer,
fee: 1e8,
}, async () => {
AccountUpdate.fundNewAccount(deployer, 2)
await thirdPartyAContract.deploy({ ownerAddress: tokenA })
await thirdPartyBContract.deploy({ ownerAddress: tokenA })
})
tx.sign([deployer.key, thirdPartyA.key, thirdPartyB.key])
await tx.prove()
await tx.send()
})
it("should prevent calling `initialize()` a second time", async () => {
const tx = await Mina.transaction({
sender: deployer,
fee: 1e8,
}, async () => {
await tokenAContract.initialize(
tokenAdmin,
UInt8.from(9),
Bool(true),
)
})
tx.sign([
deployer.key,
tokenA.key,
])
await tx.prove()
await rejects(() => tx.send())
})
})
describe("admin", () => {
const mintAmount = UInt64.from(1000)
const burnAmount = UInt64.from(100)
it("should not mint before calling resume()", async () => {
await rejects(async () =>
await Mina.transaction({
sender: sender,
fee: 1e8,
}, async () => {
AccountUpdate.fundNewAccount(sender, 1)
await tokenAContract.mint(sender, mintAmount)
}), (err: Error) => {
if (err.message.includes(FungibleTokenErrors.tokenPaused)) return true
else return false
})
})
it("should accept a call to resume()", async () => {
const tx = await Mina.transaction({
sender: sender,
fee: 1e8,
}, async () => {
await tokenAContract.resume()
})
tx.sign([sender.key, tokenAdmin.key])
await tx.prove()
await tx.send()
})
it("should mint for the sender and receiver account", async () => {
const initialBalance = (await tokenAContract.getBalanceOf(sender))
.toBigInt()
const initialCirculating = (await tokenAContract.getCirculating()).toBigInt()
const tx = await Mina.transaction({
sender: sender,
fee: 1e8,
}, async () => {
AccountUpdate.fundNewAccount(sender, 1)
await tokenAContract.mint(sender, mintAmount)
})
tx.sign([sender.key, tokenAdmin.key])
await tx.prove()
await tx.send()
const tx2 = await Mina.transaction({
sender: sender,
fee: 1e8,
}, async () => {
AccountUpdate.fundNewAccount(sender, 1)
await tokenAContract.mint(receiver, mintAmount)
})
tx2.sign([sender.key, tokenAdmin.key])
await tx2.prove()
await tx2.send()
equal(
(await tokenAContract.getBalanceOf(sender)).toBigInt(),
initialBalance + mintAmount.toBigInt(),
)
equal(
(await tokenAContract.getCirculating()).toBigInt(),
initialCirculating + mintAmount.mul(UInt64.from(2)).toBigInt(),
)
})
it("should burn tokens for the sender account", async () => {
const initialBalance = (await tokenAContract.getBalanceOf(sender))
.toBigInt()
const initialCirculating = (await tokenAContract.getCirculating()).toBigInt()
const tx = await Mina.transaction({
sender: sender,
fee: 1e8,
}, async () => {
await tokenAContract.burn(sender, burnAmount)
})
tx.sign([sender.key])
await tx.prove()
await tx.send()
equal(
(await tokenAContract.getBalanceOf(sender)).toBigInt(),
initialBalance - burnAmount.toBigInt(),
)
equal(
(await tokenAContract.getCirculating()).toBigInt(),
initialCirculating - burnAmount.toBigInt(),
)
})
it("should refuse to mint tokens without signature from the token admin", async () => {
const tx = await Mina.transaction({
sender: sender,
fee: 1e8,
}, async () => {
await tokenAContract.mint(sender, mintAmount)
})
tx.sign([sender.key])
await tx.prove()
await rejects(() => tx.send(), (err: Error) => {
if (err.message.includes("required authorization was not provided")) return true
else return false
})
})
it("should refuse to burn tokens without signature from the token holder", async () => {
const tx = await Mina.transaction({
sender: sender,
fee: 1e8,
}, async () => {
await tokenAContract.burn(receiver, burnAmount)
})
tx.sign([sender.key])
await tx.prove()
await rejects(() => tx.send(), (err: Error) => {
if (err.message.includes("Invalid signature on account_update 1")) return true
else return false
})
})
it("correctly changes the admin contract", async () => {
const tx = await Mina.transaction({
sender: sender,
fee: 1e8,
}, async () => {
AccountUpdate.fundNewAccount(sender, 1)
await newTokenAdminContract.deploy({
adminPublicKey: newTokenAdmin,
})
await tokenAContract.setAdmin(newTokenAdmin)
})
tx.sign([sender.key, tokenAdmin.key, newTokenAdmin.key])
await tx.prove()
await tx.send()
const tx2 = await Mina.transaction({
sender: sender,
fee: 1e8,
}, async () => {
await tokenAContract.mint(sender, mintAmount)
})
tx2.sign([sender.key, newTokenAdmin.key])
await tx2.prove()
await tx2.send()
const tx3 = await Mina.transaction({
sender: sender,
fee: 1e8,
}, async () => {
await tokenAContract.mint(sender, mintAmount)
})
tx3.sign([sender.key, tokenAdmin.key])
await tx3.prove()
await rejects(() => tx3.send(), (err: Error) => {
if (err.message.includes("required authorization was not provided")) return true
else return false
})
})
})
describe("transfers", () => {
const sendAmount = UInt64.from(1)
it("should do a transfer initiated by the token contract", async () => {
const initialBalanceSender = (await tokenAContract.getBalanceOf(sender))
.toBigInt()
const initialBalanceReceiver = (await tokenAContract.getBalanceOf(receiver))
.toBigInt()
const initialCirculating = (await tokenAContract.getCirculating()).toBigInt()
const tx = await Mina.transaction({
sender: sender,
fee: 1e8,
}, async () => {
await tokenAContract.transfer(
sender,
receiver,
sendAmount,
)
})
tx.sign([sender.key])
await tx.prove()
await tx.send()
equal(
(await tokenAContract.getBalanceOf(sender)).toBigInt(),
initialBalanceSender - sendAmount.toBigInt(),
)
equal(
(await tokenAContract.getBalanceOf(receiver)).toBigInt(),
initialBalanceReceiver + sendAmount.toBigInt(),
)
equal(
(await tokenAContract.getCirculating()).toBigInt(),
initialCirculating,
)
})
it("should reject a transaction not signed by the token holder", async () => {
const tx = await Mina.transaction({
sender: sender,
fee: 1e8,
}, async () => {
await tokenAContract.transfer(receiver, sender, sendAmount)
})
tx.sign([sender.key])
await tx.prove()
await rejects(() => tx.send(), (err: Error) => {
if (err.message.includes("Invalid signature on account_update 1")) return true
else return false
})
})
it("should do a transaction constructed manually, approved by the token contract", async () => {
const initialBalanceSender = (await tokenAContract.getBalanceOf(sender))
.toBigInt()
const initialBalanceReceiver = (await tokenAContract.getBalanceOf(receiver))
.toBigInt()
const initialCirculating = (await tokenAContract.getCirculating()).toBigInt()
const updateSend = AccountUpdate.createSigned(
sender,
tokenAContract.deriveTokenId(),
)
updateSend.balanceChange = Int64.fromUnsigned(sendAmount).neg()
const updateReceive = AccountUpdate.create(
receiver,
tokenAContract.deriveTokenId(),
)
updateReceive.balanceChange = Int64.fromUnsigned(sendAmount)
const tx = await Mina.transaction({
sender: deployer,
fee: 1e8,
}, async () => {
await tokenAContract.approveAccountUpdates([updateSend, updateReceive])
})
await tx.sign([sender.key, deployer.key]).prove()
await tx.send()
equal(
(await tokenAContract.getBalanceOf(sender)).toBigInt(),
initialBalanceSender - sendAmount.toBigInt(),
)
equal(
(await tokenAContract.getBalanceOf(receiver)).toBigInt(),
initialBalanceReceiver + sendAmount.toBigInt(),
)
equal(
(await tokenAContract.getCirculating()).toBigInt(),
initialCirculating,
)
})
it("should reject flash-minting transactions", async () => {
const updateSend = AccountUpdate.createSigned(
sender,
tokenAContract.deriveTokenId(),
)
updateSend.balanceChange = Int64.fromUnsigned(sendAmount).neg()
const updateReceive = AccountUpdate.create(
receiver,
tokenAContract.deriveTokenId(),
)
updateReceive.balanceChange = Int64.fromUnsigned(sendAmount)
await rejects(async () =>
await Mina.transaction({
sender: deployer,
fee: 1e8,
}, async () => {
await tokenAContract.approveAccountUpdates([updateReceive, updateSend])
}), (err: Error) => {
if (err.message.includes(FungibleTokenErrors.flashMinting)) return true
else return false
})
})
it("should reject unbalanced transactions", async () => {
const updateSend = AccountUpdate.createSigned(
sender,
tokenAContract.deriveTokenId(),
)
updateSend.balanceChange = Int64.fromUnsigned(sendAmount).neg()
const updateReceive = AccountUpdate.create(
receiver,
tokenAContract.deriveTokenId(),
)
updateReceive.balanceChange = Int64.fromUnsigned(sendAmount).mul(2)
await rejects(() =>
Mina.transaction(deployer, async () => {
await tokenAContract.approveAccountUpdates([updateSend, updateReceive])
}), (err: Error) => {
if (err.message.includes(FungibleTokenErrors.flashMinting)) return true
else return false
})
})
it("rejects transactions with mismatched tokens", async () => {
const updateSend = AccountUpdate.createSigned(
sender,
tokenAContract.deriveTokenId(),
)
updateSend.balanceChange = Int64.fromUnsigned(sendAmount).neg()
const updateReceive = AccountUpdate.create(
receiver,
tokenBContract.deriveTokenId(),
)
updateReceive.balanceChange = Int64.fromUnsigned(sendAmount)
await rejects(async () => (
await Mina.transaction({
sender: deployer,
fee: 1e8,
}, async () => {
AccountUpdate.fundNewAccount(sender, 1)
await tokenAContract.approveAccountUpdates([updateSend])
await tokenBContract.approveAccountUpdates([updateReceive])
}), (err: Error) => {
if (err.message.includes(FungibleTokenErrors.flashMinting)) return true
else return false
}
))
})
it("Should prevent transfers from account that's tracking circulation", async () => {
await rejects(() =>
Mina.transaction({
sender: sender,
fee: 1e8,
}, async () => {
AccountUpdate.fundNewAccount(sender, 1)
await tokenAContract.transfer(
tokenA,
receiver,
sendAmount,
)
}), (err: Error) => {
if (err.message.includes(FungibleTokenErrors.noTransferFromCirculation)) return true
else return false
})
})
it("Should prevent transfers to account that's tracking circulation", async () => {
await rejects(() =>
Mina.transaction({
sender: sender,
fee: 1e8,
}, async () => {
AccountUpdate.fundNewAccount(sender, 1)
await tokenAContract.transfer(
sender,
tokenA,
sendAmount,
)
}), (err: Error) => {
if (err.message.includes(FungibleTokenErrors.noTransferFromCirculation)) return true
else return false
})
})
it("Should reject manually constructed transfers from the account that's tracking circulation", async () => {
const updateSend = AccountUpdate.createSigned(
tokenA,
tokenAContract.deriveTokenId(),
)
updateSend.balanceChange = Int64.fromUnsigned(sendAmount).neg()
const updateReceive = AccountUpdate.create(
receiver,
tokenAContract.deriveTokenId(),
)
updateReceive.balanceChange = Int64.fromUnsigned(sendAmount)
await rejects(() =>
Mina.transaction({
sender: deployer,
fee: 1e8,
}, async () => {
await tokenAContract.approveAccountUpdates([updateSend, updateReceive])
}), (err: Error) => {
if (err.message.includes(FungibleTokenErrors.noTransferFromCirculation)) return true
else return false
})
})
it("Should reject manually constructed transfers to the account that's tracking circulation", async () => {
const updateSend = AccountUpdate.createSigned(
sender,
tokenAContract.deriveTokenId(),
)
updateSend.balanceChange = Int64.fromUnsigned(sendAmount).neg()
const updateReceive = AccountUpdate.create(
tokenA,
tokenAContract.deriveTokenId(),
)
updateReceive.balanceChange = Int64.fromUnsigned(sendAmount)
await rejects(() =>
Mina.transaction({
sender: deployer,
fee: 1e8,
}, async () => {
await tokenAContract.approveAccountUpdates([updateSend, updateReceive])
}), (err: Error) => {
if (err.message.includes(FungibleTokenErrors.noTransferFromCirculation)) return true
else return false
})
})
})
describe("account permissions", () => {
it("should reject a transaction that's changing the account permission for receive", async () => {
const permissions = localChain.getAccount(sender, tokenAContract.deriveTokenId()).permissions
permissions.receive = Permissions.impossible()
const updateSend = AccountUpdate.createSigned(
sender,
tokenAContract.deriveTokenId(),
)
updateSend.account.permissions.set(permissions)
await rejects(() =>
Mina.transaction({
sender: sender,
fee: 1e8,
}, async () => {
await tokenAContract.approveBase(AccountUpdateForest.fromFlatArray([updateSend]))
}), (err: Error) => {
if (err.message.includes(FungibleTokenErrors.noPermissionChangeAllowed)) return true
else return false
})
})
})
describe("pausing/resuming", () => {
const sendAmount = UInt64.from(1)
it("can be paused by the admin", async () => {
const tx = await Mina.transaction({
sender: sender,
fee: 1e8,
}, async () => {
await tokenAContract.pause()
})
tx.sign([sender.key, newTokenAdmin.key])
await tx.prove()
await tx.send()
})
it("will block transactions while paused", async () => {
await rejects(() =>
Mina.transaction({
sender: sender,
fee: 1e8,
}, async () => {
await tokenAContract.transfer(sender, receiver, sendAmount)
}), (err: Error) => {
if (err.message.includes(FungibleTokenErrors.tokenPaused)) return true
else return false
})
})
it("can be resumed by the admin", async () => {
const tx = await Mina.transaction({
sender: sender,
fee: 1e8,
}, async () => {
await tokenAContract.resume()
})
tx.sign([sender.key, newTokenAdmin.key])
await tx.prove()
await tx.send()
})
it("will accept transactions after resume", async () => {
const initialBalanceSender = (await tokenAContract.getBalanceOf(sender))
.toBigInt()
const initialBalanceReceiver = (await tokenAContract.getBalanceOf(receiver))
.toBigInt()
const initialCirculating = (await tokenAContract.getCirculating()).toBigInt()
const tx = await Mina.transaction({
sender: sender,
fee: 1e8,
}, async () => {
await tokenAContract.transfer(
sender,
receiver,
sendAmount,
)
})
tx.sign([sender.key])
await tx.prove()
await tx.send()
equal(
(await tokenAContract.getBalanceOf(sender)).toBigInt(),
initialBalanceSender - sendAmount.toBigInt(),
)
equal(
(await tokenAContract.getBalanceOf(receiver)).toBigInt(),
initialBalanceReceiver + sendAmount.toBigInt(),
)
equal(
(await tokenAContract.getCirculating()).toBigInt(),
initialCirculating,
)
})
it("should prevent the deployer from minting without calling into the admin contract", async () => {
const attackTx = await Mina.transaction({
sender: sender,
fee: 1e8,
}, async () => {
// AccountUpdate.fundNewAccount(sender, 1)
let nopUpdate = AccountUpdate.default(tokenA, tokenAContract.tokenId)
let maliciousUpdate = AccountUpdate.default(sender, tokenAContract.deriveTokenId())
maliciousUpdate.balanceChange = new Int64(new UInt64(100n))
maliciousUpdate.body.mayUseToken = {
parentsOwnToken: new Bool(true),
inheritFromParent: new Bool(false),
}
AccountUpdate.attachToTransaction(nopUpdate)
nopUpdate.approve(maliciousUpdate)
nopUpdate.requireSignature()
maliciousUpdate.requireSignature()
})
await attackTx.prove()
attackTx.sign([sender.key, tokenA.key])
await rejects(() => attackTx.send())
})
})
describe("third party", () => {
const depositAmount = UInt64.from(100)
it("should deposit from the user to the token account of the third party", async () => {
const initialBalance = (await tokenAContract.getBalanceOf(sender))
.toBigInt()
const initialCirculating = (await tokenAContract.getCirculating()).toBigInt()
const tokenId = tokenAContract.deriveTokenId()
const updateWithdraw = AccountUpdate.createSigned(sender, tokenId)
updateWithdraw.balanceChange = Int64.fromUnsigned(depositAmount).neg()
const updateDeposit = await thirdPartyAContract.deposit(depositAmount)
updateDeposit.body.mayUseToken = AccountUpdate.MayUseToken.InheritFromParent
const tx = await Mina.transaction({
sender: sender,
fee: 1e8,
}, async () => {
AccountUpdate.fundNewAccount(sender, 1)
await tokenAContract.approveBase(AccountUpdateForest.fromFlatArray([
updateWithdraw,
updateDeposit,
]))
})
tx.sign([sender.key])
await tx.prove()
await tx.send()
equal(
(await tokenAContract.getBalanceOf(thirdPartyA)).toBigInt(),
depositAmount.toBigInt(),
)
equal(
(await tokenAContract.getBalanceOf(sender)).toBigInt(),
initialBalance - depositAmount.toBigInt(),
)
equal(
(await tokenAContract.getCirculating()).toBigInt(),
initialCirculating,
)
})
it("should send tokens from one contract to another", async () => {
const initialBalance = (await tokenAContract.getBalanceOf(thirdPartyA))
.toBigInt()
const initialBalance2 = (await tokenAContract.getBalanceOf(thirdPartyB))
.toBigInt()
const initialCirculating = (await tokenAContract.getCirculating()).toBigInt()
const transferAmount = UInt64.from(1)
const updateWithdraw = await thirdPartyAContract.withdraw(transferAmount)
const updateDeposit = await thirdPartyBContract.deposit(transferAmount)
updateDeposit.body.mayUseToken = AccountUpdate.MayUseToken.InheritFromParent
const tx = await Mina.transaction({
sender: sender,
fee: 1e8,
}, async () => {
AccountUpdate.fundNewAccount(sender, 1)
await tokenAContract.approveBase(AccountUpdateForest.fromFlatArray([
updateWithdraw,
updateDeposit,
]))
})
await tx.sign([sender.key, thirdPartyA.key]).prove()
await tx.send()
equal(
(await tokenAContract.getBalanceOf(thirdPartyA)).toBigInt(),
initialBalance - transferAmount.toBigInt(),
)
equal(
(await tokenAContract.getBalanceOf(thirdPartyB)).toBigInt(),
initialBalance2 + transferAmount.toBigInt(),
)
equal(
(await tokenAContract.getCirculating()).toBigInt(),
initialCirculating,
)
})
it("should reject an unbalanced transaction", async () => {
const depositAmount = UInt64.from(5)
const withdrawAmount = UInt64.from(10)
const updateWithdraw = await thirdPartyAContract.withdraw(withdrawAmount)
const updateDeposit = await thirdPartyBContract.deposit(depositAmount)
updateDeposit.body.mayUseToken = AccountUpdate.MayUseToken.InheritFromParent
await rejects(() =>
Mina.transaction({
sender: sender,
fee: 1e8,
}, async () => {
AccountUpdate.fundNewAccount(sender, 1)
await tokenAContract.approveBase(AccountUpdateForest.fromFlatArray([
updateWithdraw,
updateDeposit,
]))
}), (err: Error) => {
if (err.message.includes(FungibleTokenErrors.unbalancedTransaction)) return true
else return false
})
})
})
describe("Custom Admin Contract", () => {
const mintAmount = UInt64.from(500)
const illegalMintAmount = UInt64.from(1000)
const sendAmount = UInt64.from(100)
it("should mint with a custom admin contract", async () => {
FungibleToken.AdminContract = CustomTokenAdmin
const initialBalance = (await tokenBContract.getBalanceOf(sender))
.toBigInt()
const initialCirculating = (await tokenBContract.getCirculating()).toBigInt()
const tx = await Mina.transaction({
sender: sender,
fee: 1e8,
}, async () => {
AccountUpdate.fundNewAccount(sender, 1)
await tokenBContract.mint(sender, mintAmount)
})
tx.sign([sender.key])
await tx.prove()
await tx.send()
equal(
(await tokenBContract.getBalanceOf(sender)).toBigInt(),
initialBalance + mintAmount.toBigInt(),
)
equal(
(await tokenBContract.getCirculating()).toBigInt(),
initialCirculating + mintAmount.toBigInt(),
)
FungibleToken.AdminContract = FungibleTokenAdmin
})
it("should send tokens without having the custom admin contract", async () => {
const initialBalanceSender = (await tokenBContract.getBalanceOf(sender))
.toBigInt()
const initialBalanceReceiver = (await tokenBContract.getBalanceOf(receiver))
.toBigInt()
const initialCirculating = (await tokenBContract.getCirculating()).toBigInt()
const tx = await Mina.transaction({
sender: sender,
fee: 1e8,
}, async () => {
AccountUpdate.fundNewAccount(sender, 1)
await tokenBContract.transfer(
sender,
receiver,
sendAmount,
)
})
tx.sign([sender.key])
await tx.prove()
await tx.send()
equal(
(await tokenBContract.getBalanceOf(sender)).toBigInt(),
initialBalanceSender - sendAmount.toBigInt(),
)
equal(
(await tokenBContract.getBalanceOf(receiver)).toBigInt(),
initialBalanceReceiver + sendAmount.toBigInt(),
)
equal(
(await tokenBContract.getCirculating()).toBigInt(),
initialCirculating,
)
})
it("should not mint too many B tokens", async () => {
FungibleToken.AdminContract = CustomTokenAdmin
await rejects(async () =>
await Mina.transaction({
sender: sender,
fee: 1e8,
}, async () => {
await tokenBContract.mint(sender, illegalMintAmount)
})
)
FungibleToken.AdminContract = FungibleTokenAdmin
})
it("should not mint too many B tokens using the vanilla admin contract", {
skip: !proofsEnabled,
}, async () => {
const tx = await Mina.transaction({
sender: sender,
fee: 1e8,
}, async () => {
await tokenBContract.mint(sender, illegalMintAmount)
})
tx.sign([sender.key, tokenBAdmin.key])
await tx.prove()
await rejects(() => tx.send())
})
})
})
/** This is a faucet style admin contract, where anyone can mint, but only up to 500 tokens in a
* single AccountUpdate */
class CustomTokenAdmin extends SmartContract implements FungibleTokenAdminBase {
@state(PublicKey)
private adminPublicKey = State<PublicKey>()
async deploy(props: FungibleTokenAdminDeployProps) {
await super.deploy(props)
this.adminPublicKey.set(props.adminPublicKey)
}
private ensureAdminSignature() {
const admin = this.adminPublicKey.getAndRequireEquals()
return AccountUpdate.createSigned(admin)
}
@method.returns(Bool)
public async canMint(accountUpdate: AccountUpdate) {
return accountUpdate.body.balanceChange.magnitude.lessThanOrEqual(UInt64.from(500))
}
@method.returns(Bool)
public async canChangeAdmin(_admin: PublicKey) {
this.ensureAdminSignature()
return Bool(true)
}
@method.returns(Bool)
public async canPause(): Promise<Bool> {
this.ensureAdminSignature()
return Bool(true)
}
@method.returns(Bool)
public async canResume(): Promise<Bool> {
this.ensureAdminSignature()
return Bool(true)
}
}
export default class ThirdParty extends SmartContract {
@state(PublicKey)
ownerAddress = State<PublicKey>()
public get tokenOwner() {
return new FungibleToken(this.ownerAddress.getAndRequireEquals())
}
async deploy(args: DeployArgs & { ownerAddress: PublicKey }) {
await super.deploy(args)
this.ownerAddress.set(args.ownerAddress)
}
@method.returns(AccountUpdate)
public async deposit(amount: UInt64) {
const accountUpdate = AccountUpdate.create(this.address, this.tokenOwner.deriveTokenId())
accountUpdate.balanceChange = Int64.fromUnsigned(amount)
return accountUpdate
}
@method.returns(AccountUpdate)
public async withdraw(amount: UInt64) {
const accountUpdate = AccountUpdate.create(this.address, this.tokenOwner.deriveTokenId())
accountUpdate.balanceChange = Int64.fromUnsigned(amount).neg()
accountUpdate.requireSignature()
return accountUpdate
}
}