This repository was archived by the owner on Jul 10, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathnft.test.ts
More file actions
861 lines (668 loc) · 29.9 KB
/
Copy pathnft.test.ts
File metadata and controls
861 lines (668 loc) · 29.9 KB
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
import {
AccountWallet,
Fr,
PXE,
TxStatus,
getContractInstanceFromDeployParams,
Contract,
ContractDeployer,
AccountWalletWithSecretKey,
IntentAction,
AztecAddress,
DeployOptions,
} from '@aztec/aztec.js';
import { setupPXE } from './utils.js';
import { getInitialTestAccountsManagers } from '@aztec/accounts/testing';
import { NFTContract, NFTContractArtifact } from '../../artifacts/NFT.js';
import { AztecLmdbStore } from '@aztec/kv-store/lmdb';
import { describe, it, expect, beforeAll, beforeEach, afterAll } from 'vitest';
// Deploy NFT contract with a minter
async function deployNFTWithMinter(deployer: AccountWallet, options?: DeployOptions) {
const contract = await Contract.deploy(
deployer,
NFTContractArtifact,
['TestNFT', 'TNFT', deployer.getAddress(), deployer.getAddress()],
'constructor_with_minter',
)
.send(options)
.deployed();
return contract;
}
// Check if an address owns a specific NFT in public state
async function assertOwnsPublicNFT(
nft: NFTContract,
tokenId: bigint,
expectedOwner: AztecAddress,
caller?: AccountWallet,
) {
const n = caller ? nft.withWallet(caller) : nft;
const owner = await n.methods.public_owner_of(tokenId).simulate();
expect(owner.equals(expectedOwner)).toBe(true);
}
// Check if an address owns a specific NFT in private state
async function assertOwnsPrivateNFT(nft: NFTContract, tokenId: bigint, owner: AztecAddress, caller?: AccountWallet) {
const n = caller ? nft.withWallet(caller) : nft;
const [nfts, _] = await n.methods.get_private_nfts(owner, 0).simulate();
const hasNFT = nfts.some((id: bigint) => id === tokenId);
expect(hasNFT).toBe(true);
}
// Check if an NFT has been nullified (no longer owned) in private state
async function assertPrivateNFTNullified(
nft: NFTContract,
tokenId: bigint,
owner: AztecAddress,
caller?: AccountWallet,
) {
const n = caller ? nft.withWallet(caller) : nft;
const [nfts, _] = await n.methods.get_private_nfts(owner, 0).simulate();
const hasNFT = nfts.some((id: bigint) => id === tokenId);
expect(hasNFT).toBe(false);
}
const setupTestSuite = async () => {
const { pxe, store } = await setupPXE();
const managers = await getInitialTestAccountsManagers(pxe);
const wallets = await Promise.all(managers.map((acc) => acc.register()));
const [deployer] = wallets;
return { pxe, deployer, wallets, store };
};
describe('NFT - Single PXE', () => {
let pxe: PXE;
let store: AztecLmdbStore;
let wallets: AccountWalletWithSecretKey[];
let deployer: AccountWalletWithSecretKey;
let alice: AccountWalletWithSecretKey;
let bob: AccountWalletWithSecretKey;
let carl: AccountWalletWithSecretKey;
let nft: NFTContract;
beforeAll(async () => {
({ pxe, deployer, wallets, store } = await setupTestSuite());
[alice, bob, carl] = wallets;
console.log({
alice: alice.getAddress(),
bob: bob.getAddress(),
});
});
beforeEach(async () => {
nft = (await deployNFTWithMinter(alice)) as NFTContract;
});
afterAll(async () => {
await store.delete();
});
it('deploys the contract with minter', async () => {
const salt = Fr.random();
const deployerWallet = alice; // using first account as deployer
const deploymentData = await getContractInstanceFromDeployParams(NFTContractArtifact, {
constructorArtifact: 'constructor_with_minter',
constructorArgs: ['TestNFT', 'TNFT', deployerWallet.getAddress(), deployerWallet.getAddress()],
salt,
deployer: deployerWallet.getAddress(),
});
const deployer = new ContractDeployer(NFTContractArtifact, deployerWallet, undefined, 'constructor_with_minter');
const tx = deployer
.deploy('TestNFT', 'TNFT', deployerWallet.getAddress(), deployerWallet.getAddress())
.send({ contractAddressSalt: salt });
const receipt = await tx.getReceipt();
expect(receipt).toEqual(
expect.objectContaining({
status: TxStatus.PENDING,
error: '',
}),
);
const receiptAfterMined = await tx.wait({ wallet: deployerWallet });
const contractMetadata = await pxe.getContractMetadata(deploymentData.address);
expect(contractMetadata).toBeDefined();
expect(contractMetadata.isContractPubliclyDeployed).toBeTruthy();
expect(receiptAfterMined).toEqual(
expect.objectContaining({
status: TxStatus.SUCCESS,
}),
);
expect(receiptAfterMined.contract.instance.address).toEqual(deploymentData.address);
}, 300_000);
// --- Mint tests ---
it('mints NFT to public', async () => {
const tokenId = 1n;
await nft.withWallet(alice).methods.mint_to_public(bob.getAddress(), tokenId).send().wait();
// Verify bob owns the NFT publicly
await assertOwnsPublicNFT(nft, tokenId, bob.getAddress());
}, 300_000);
it('mints NFT to private', async () => {
const tokenId = 1n;
await nft.withWallet(alice).methods.mint_to_private(bob.getAddress(), tokenId).send().wait();
// Verify bob owns the NFT privately
await assertOwnsPrivateNFT(nft, tokenId, bob.getAddress());
}, 300_000);
it('fails to mint when caller is not minter', async () => {
const tokenId = 1n;
// Bob attempts to mint when he's not the minter
await expect(nft.withWallet(bob).methods.mint_to_public(bob.getAddress(), tokenId).send().wait()).rejects.toThrow(
/^Transaction 0x[0-9a-f]+ was app_logic_reverted\. Reason: $/,
);
await expect(nft.withWallet(bob).methods.mint_to_private(bob.getAddress(), tokenId).send().wait()).rejects.toThrow(
/Assertion failed: caller is not minter/,
);
}, 300_000);
it('fails to mint same token ID twice', async () => {
const tokenId = 1n;
// First mint succeeds
await nft.withWallet(alice).methods.mint_to_public(bob.getAddress(), tokenId).send().wait();
// Second mint with same token ID should fail
await expect(
nft.withWallet(alice).methods.mint_to_public(carl.getAddress(), tokenId).send().wait(),
).rejects.toThrow(/^Transaction 0x[0-9a-f]+ was app_logic_reverted\. Reason: $/);
}, 300_000);
it('fails to mint with token ID zero', async () => {
const tokenId = 0n;
await expect(nft.withWallet(alice).methods.mint_to_public(bob.getAddress(), tokenId).send().wait()).rejects.toThrow(
/^Transaction 0x[0-9a-f]+ was app_logic_reverted\. Reason: $/,
);
await expect(
nft.withWallet(alice).methods.mint_to_private(bob.getAddress(), tokenId).send().wait(),
).rejects.toThrow(/zero token ID not supported/);
}, 300_000);
it('can mint multiple NFTs to same owner', async () => {
const tokenId1 = 1n;
const tokenId2 = 2n;
// Mint two NFTs to bob
await nft.withWallet(alice).methods.mint_to_private(bob.getAddress(), tokenId1).send().wait();
await nft.withWallet(alice).methods.mint_to_private(bob.getAddress(), tokenId2).send().wait();
// Verify bob owns both NFTs
await assertOwnsPrivateNFT(nft, tokenId1, bob.getAddress());
await assertOwnsPrivateNFT(nft, tokenId2, bob.getAddress());
}, 300_000);
// --- Burn tests ---
it('burns NFT from public balance', async () => {
const tokenId = 1n;
// First mint NFT publicly to bob
await nft.withWallet(alice).methods.mint_to_public(bob.getAddress(), tokenId).send().wait();
// Verify bob owns the NFT publicly
await assertOwnsPublicNFT(nft, tokenId, bob.getAddress());
// Bob burns his NFT
await nft.withWallet(bob).methods.burn_public(bob.getAddress(), tokenId, 0n).send().wait();
// Verify the NFT no longer exists
const owner = await nft.methods.public_owner_of(tokenId).simulate();
expect(owner.equals(AztecAddress.ZERO)).toBe(true);
}, 300_000);
it('burns NFT from private balance', async () => {
const tokenId = 1n;
// First mint NFT privately to bob
await nft.withWallet(alice).methods.mint_to_private(bob.getAddress(), tokenId).send().wait();
// Verify bob owns the NFT privately
await assertOwnsPrivateNFT(nft, tokenId, bob.getAddress());
// Bob burns his NFT
await nft.withWallet(bob).methods.burn_private(bob.getAddress(), tokenId, 0n).send().wait();
// Verify the NFT is nullified
await assertPrivateNFTNullified(nft, tokenId, bob.getAddress());
}, 300_000);
it('fails to burn NFT when caller is not owner', async () => {
const tokenId = 1n;
// First mint NFT publicly to bob
await nft.withWallet(alice).methods.mint_to_public(bob.getAddress(), tokenId).send().wait();
// Carl attempts to burn bob's NFT
await expect(
nft.withWallet(carl).methods.burn_public(carl.getAddress(), tokenId, 0n).send().wait(),
).rejects.toThrow(/^Transaction 0x[0-9a-f]+ was app_logic_reverted\. Reason: $/);
// First mint NFT privately to bob
const tokenId2 = 2n;
await nft.withWallet(alice).methods.mint_to_private(bob.getAddress(), tokenId2).send().wait();
// Carl attempts to burn bob's private NFT
await expect(
nft.withWallet(carl).methods.burn_private(carl.getAddress(), tokenId2, 0n).send().wait(),
).rejects.toThrow(/nft not found/);
}, 300_000);
it('fails to burn non-existent NFT', async () => {
const tokenId = 999n;
// Try to burn non-existent public NFT
await expect(nft.withWallet(bob).methods.burn_public(bob.getAddress(), tokenId, 0n).send().wait()).rejects.toThrow(
/^Transaction 0x[0-9a-f]+ was app_logic_reverted\. Reason: $/,
);
// Try to burn non-existent private NFT
await expect(nft.withWallet(bob).methods.burn_private(bob.getAddress(), tokenId, 0n).send().wait()).rejects.toThrow(
/nft not found/,
);
}, 300_000);
// --- Transfer tests: private to private ---
it('transfers NFT from private to private', async () => {
const tokenId = 1n;
// First mint NFT privately to alice
await nft.withWallet(alice).methods.mint_to_private(alice.getAddress(), tokenId).send().wait();
// Verify alice owns the NFT privately
await assertOwnsPrivateNFT(nft, tokenId, alice.getAddress());
// Transfer NFT from alice to bob privately
await nft
.withWallet(alice)
.methods.transfer_private_to_private(alice.getAddress(), bob.getAddress(), tokenId, 0n)
.send()
.wait();
// Verify alice no longer owns the NFT
await assertPrivateNFTNullified(nft, tokenId, alice.getAddress());
// Verify bob now owns the NFT privately
await assertOwnsPrivateNFT(nft, tokenId, bob.getAddress());
}, 300_000);
it('fails to transfer private NFT when not owner', async () => {
const tokenId = 1n;
// First mint NFT privately to alice
await nft.withWallet(alice).methods.mint_to_private(alice.getAddress(), tokenId).send().wait();
// Carl attempts to transfer alice's NFT to bob
await expect(
nft
.withWallet(carl)
.methods.transfer_private_to_private(carl.getAddress(), bob.getAddress(), tokenId, 0n)
.send()
.wait(),
).rejects.toThrow(/nft not found/);
// Verify alice still owns the NFT
await assertOwnsPrivateNFT(nft, tokenId, alice.getAddress());
}, 300_000);
// --- Transfer tests: private to commitment ---
// TODO: This is failing because the commitment is not stored or accessible
it.skip('transfers NFT from private to commitment and completes transfer', async () => {
const tokenId = 1n;
// First mint NFT privately to alice
await nft.withWallet(alice).methods.mint_to_private(alice.getAddress(), tokenId).send().wait();
// Verify alice owns the NFT privately
await assertOwnsPrivateNFT(nft, tokenId, alice.getAddress());
// Bob initializes a transfer commitment for receiving the NFT
await nft
.withWallet(bob)
.methods.initialize_transfer_commitment(bob.getAddress(), bob.getAddress(), bob.getAddress())
.send()
.wait();
// Get the commitment value through simulation
const commitment = await nft
.withWallet(bob)
.methods.initialize_transfer_commitment(alice.getAddress(), bob.getAddress(), bob.getAddress())
.simulate();
// Alice transfers NFT to the commitment
await nft
.withWallet(alice)
.methods.transfer_private_to_commitment(alice.getAddress(), tokenId, commitment, 0n)
.send()
.wait();
// Verify alice no longer owns the NFT
await assertPrivateNFTNullified(nft, tokenId, alice.getAddress());
// Verify bob now owns the NFT privately
await assertOwnsPrivateNFT(nft, tokenId, bob.getAddress());
}, 300_000);
it('fails to transfer to invalid commitment', async () => {
const tokenId = 1n;
// First mint NFT privately to alice
await nft.withWallet(alice).methods.mint_to_private(alice.getAddress(), tokenId).send().wait();
// Create an invalid commitment (using wrong sender)
const invalidCommitment = await nft
.withWallet(bob)
.methods.initialize_transfer_commitment(carl.getAddress(), bob.getAddress(), bob.getAddress())
.simulate();
// Alice attempts to transfer to invalid commitment
await expect(
nft
.withWallet(alice)
.methods.transfer_private_to_commitment(alice.getAddress(), tokenId, invalidCommitment, 0n)
.send()
.wait(),
).rejects.toThrow(/^Transaction 0x[0-9a-f]+ was app_logic_reverted\. Reason: $/);
// Verify alice still owns the NFT
await assertOwnsPrivateNFT(nft, tokenId, alice.getAddress());
}, 300_000);
// --- Transfer tests: private to public ---
it('transfers NFT from private to public', async () => {
const tokenId = 1n;
// First mint NFT privately to alice
await nft.withWallet(alice).methods.mint_to_private(alice.getAddress(), tokenId).send().wait();
// Verify alice owns the NFT privately
await assertOwnsPrivateNFT(nft, tokenId, alice.getAddress());
// Transfer NFT from alice to bob publicly
await nft
.withWallet(alice)
.methods.transfer_private_to_public(alice.getAddress(), bob.getAddress(), tokenId, 0n)
.send()
.wait();
// Verify alice no longer owns the NFT privately
await assertPrivateNFTNullified(nft, tokenId, alice.getAddress());
// Verify bob now owns the NFT publicly
await assertOwnsPublicNFT(nft, tokenId, bob.getAddress());
}, 300_000);
it('fails to transfer private NFT to public when not owner', async () => {
const tokenId = 1n;
// First mint NFT privately to alice
await nft.withWallet(alice).methods.mint_to_private(alice.getAddress(), tokenId).send().wait();
// Carl attempts to transfer alice's NFT to bob
await expect(
nft
.withWallet(carl)
.methods.transfer_private_to_public(carl.getAddress(), bob.getAddress(), tokenId, 0n)
.send()
.wait(),
).rejects.toThrow(/nft not found/);
// Verify alice still owns the NFT privately
await assertOwnsPrivateNFT(nft, tokenId, alice.getAddress());
}, 300_000);
it('transfers NFT from private to public with authorization', async () => {
const tokenId = 1n;
// First mint NFT privately to alice
await nft.withWallet(alice).methods.mint_to_private(alice.getAddress(), tokenId).send().wait();
// Create transfer call interface with non-zero nonce
const transferCallInterface = nft
.withWallet(bob)
.methods.transfer_private_to_public(alice.getAddress(), bob.getAddress(), tokenId, 1n);
// Add authorization witness from alice to bob
const intent: IntentAction = {
caller: bob.getAddress(),
action: transferCallInterface,
};
const witness = await alice.createAuthWit(intent);
// Bob executes the transfer with alice's authorization
await transferCallInterface.send({ authWitnesses: [witness] }).wait();
// Verify alice no longer owns the NFT privately
await assertPrivateNFTNullified(nft, tokenId, alice.getAddress());
// Verify bob now owns the NFT publicly
await assertOwnsPublicNFT(nft, tokenId, bob.getAddress());
}, 300_000);
// --- Transfer tests: private to public with commitment ---
it('transfers NFT from private to public with commitment', async () => {
const tokenId = 1n;
// First mint NFT privately to alice
await nft.withWallet(alice).methods.mint_to_private(alice.getAddress(), tokenId).send().wait();
// Verify alice owns the NFT privately
await assertOwnsPrivateNFT(nft, tokenId, alice.getAddress());
// Transfer NFT from alice to bob with commitment
await nft
.withWallet(alice)
.methods.transfer_private_to_public_with_commitment(alice.getAddress(), bob.getAddress(), tokenId, 0n)
.send()
.wait();
// Verify alice no longer owns the NFT privately
await assertPrivateNFTNullified(nft, tokenId, alice.getAddress());
// Verify bob now owns the NFT publicly
await assertOwnsPublicNFT(nft, tokenId, bob.getAddress());
}, 300_000);
it('fails to transfer private NFT to public with commitment when not owner', async () => {
const tokenId = 1n;
// First mint NFT privately to alice
await nft.withWallet(alice).methods.mint_to_private(alice.getAddress(), tokenId).send().wait();
// Carl attempts to transfer alice's NFT to bob
await expect(
nft
.withWallet(carl)
.methods.transfer_private_to_public_with_commitment(carl.getAddress(), bob.getAddress(), tokenId, 0n)
.send()
.wait(),
).rejects.toThrow(/nft not found/);
// Verify alice still owns the NFT privately
await assertOwnsPrivateNFT(nft, tokenId, alice.getAddress());
}, 300_000);
it('transfers NFT from private to public with commitment and authorization', async () => {
const tokenId = 1n;
// First mint NFT privately to alice
await nft.withWallet(alice).methods.mint_to_private(alice.getAddress(), tokenId).send().wait();
// Create transfer call interface with non-zero nonce
const transferCallInterface = nft
.withWallet(bob)
.methods.transfer_private_to_public_with_commitment(alice.getAddress(), bob.getAddress(), tokenId, 1n);
// Add authorization witness from alice to bob
const intent: IntentAction = {
caller: bob.getAddress(),
action: transferCallInterface,
};
const witness = await alice.createAuthWit(intent);
// Bob executes the transfer with alice's authorization
await transferCallInterface.send({ authWitnesses: [witness] }).wait();
// Verify alice no longer owns the NFT privately
await assertPrivateNFTNullified(nft, tokenId, alice.getAddress());
// Verify bob now owns the NFT publicly
await assertOwnsPublicNFT(nft, tokenId, bob.getAddress());
}, 300_000);
// --- Transfer tests: public to private ---
it('transfers NFT from public to private', async () => {
const tokenId = 1n;
// First mint NFT publicly to alice
await nft.withWallet(alice).methods.mint_to_public(alice.getAddress(), tokenId).send().wait();
// Verify alice owns the NFT publicly
await assertOwnsPublicNFT(nft, tokenId, alice.getAddress());
// Transfer NFT from alice's public balance to private balance
await nft
.withWallet(alice)
.methods.transfer_public_to_private(alice.getAddress(), bob.getAddress(), tokenId, 0n)
.send()
.wait();
// Verify alice no longer owns the NFT publicly
const publicOwner = await nft.methods.public_owner_of(tokenId).simulate();
expect(publicOwner.equals(AztecAddress.ZERO)).toBe(true);
// Verify bob now owns the NFT privately
await assertOwnsPrivateNFT(nft, tokenId, bob.getAddress());
}, 300_000);
it('fails to transfer public NFT to private when not owner', async () => {
const tokenId = 1n;
// First mint NFT publicly to alice
await nft.withWallet(alice).methods.mint_to_public(alice.getAddress(), tokenId).send().wait();
// Carl attempts to transfer alice's NFT to bob
await expect(
nft
.withWallet(carl)
.methods.transfer_public_to_private(carl.getAddress(), bob.getAddress(), tokenId, 0n)
.send()
.wait(),
).rejects.toThrow(/^Transaction 0x[0-9a-f]+ was app_logic_reverted\. Reason: $/);
// Verify alice still owns the NFT publicly
await assertOwnsPublicNFT(nft, tokenId, alice.getAddress());
}, 300_000);
it('transfers NFT from public to private with authorization', async () => {
const tokenId = 1n;
// First mint NFT publicly to alice
await nft.withWallet(alice).methods.mint_to_public(alice.getAddress(), tokenId).send().wait();
// Create transfer call interface with non-zero nonce
const transferCallInterface = nft
.withWallet(bob)
.methods.transfer_public_to_private(alice.getAddress(), bob.getAddress(), tokenId, 1n);
// Add authorization witness from alice to bob
const intent: IntentAction = {
caller: bob.getAddress(),
action: transferCallInterface,
};
const witness = await alice.createAuthWit(intent);
// Bob executes the transfer with alice's authorization
await transferCallInterface.send({ authWitnesses: [witness] }).wait();
// Verify alice no longer owns the NFT publicly
const publicOwner = await nft.methods.public_owner_of(tokenId).simulate();
expect(publicOwner.equals(AztecAddress.ZERO)).toBe(true);
// Verify bob now owns the NFT privately
await assertOwnsPrivateNFT(nft, tokenId, bob.getAddress());
}, 300_000);
// --- Transfer tests: public to public ---
it('transfers NFT from public to public', async () => {
const tokenId = 1n;
// First mint NFT publicly to alice
await nft.withWallet(alice).methods.mint_to_public(alice.getAddress(), tokenId).send().wait();
// Verify alice owns the NFT publicly
await assertOwnsPublicNFT(nft, tokenId, alice.getAddress());
// Transfer NFT from alice to bob publicly
await nft
.withWallet(alice)
.methods.transfer_public_to_public(alice.getAddress(), bob.getAddress(), tokenId, 0n)
.send()
.wait();
// Verify alice no longer owns the NFT publicly
const aliceOwner = await nft.methods.public_owner_of(tokenId).simulate();
expect(aliceOwner.equals(alice.getAddress())).toBe(false);
// Verify bob now owns the NFT publicly
await assertOwnsPublicNFT(nft, tokenId, bob.getAddress());
}, 300_000);
it('fails to transfer public NFT when not owner', async () => {
const tokenId = 1n;
// First mint NFT publicly to alice
await nft.withWallet(alice).methods.mint_to_public(alice.getAddress(), tokenId).send().wait();
// Carl attempts to transfer alice's NFT to bob
await expect(
nft
.withWallet(carl)
.methods.transfer_public_to_public(carl.getAddress(), bob.getAddress(), tokenId, 0n)
.send()
.wait(),
).rejects.toThrow(/^Transaction 0x[0-9a-f]+ was app_logic_reverted\. Reason: $/);
// Verify alice still owns the NFT publicly
await assertOwnsPublicNFT(nft, tokenId, alice.getAddress());
}, 300_000);
// TODO: Pass this test
it.skip('transfers NFT from public to public with authorization', async () => {
const tokenId = 1n;
// First mint NFT publicly to alice
await nft.withWallet(alice).methods.mint_to_public(alice.getAddress(), tokenId).send().wait();
// Verify initial ownership
const initialOwner = await nft.methods.public_owner_of(tokenId).simulate();
expect(initialOwner.equals(alice.getAddress())).toBe(true);
// Create transfer call interface with non-zero nonce
const action = nft
.withWallet(bob)
.methods.transfer_public_to_public(alice.getAddress(), bob.getAddress(), tokenId, 1n);
// Add authorization witness from alice to bob
const intent: IntentAction = {
caller: bob.getAddress(),
action,
};
// TODO: failing here
const witness = await alice.createAuthWit(intent);
const validity = await alice.lookupValidity(alice.getAddress(), intent, witness);
expect(validity.isValidInPrivate).toBeTruthy();
expect(validity.isValidInPublic).toBeFalsy();
// Bob executes the transfer with alice's authorization
await action.send({ authWitnesses: [witness] }).wait();
// Verify final ownership
const finalOwner = await nft.methods.public_owner_of(tokenId).simulate();
expect(finalOwner.equals(bob.getAddress())).toBe(true);
}, 300_000);
// --- View function tests ---
it('returns correct name and symbol', async () => {
const name = await nft.methods.public_get_name().simulate();
const symbol = await nft.methods.public_get_symbol().simulate();
const nameStr = bigIntToAsciiString(name.value);
const symbolStr = bigIntToAsciiString(symbol.value);
console.log('NFT Name:', nameStr);
console.log('NFT Symbol:', symbolStr);
expect(nameStr).toBe('TestNFT');
expect(symbolStr).toBe('TNFT');
}, 300_000);
it('returns correct public owner', async () => {
const tokenId = 1n;
// Initially no owner (zero address)
const initialOwner = await nft.methods.public_owner_of(tokenId).simulate();
expect(initialOwner.equals(AztecAddress.ZERO)).toBe(true);
// Mint NFT to alice
await nft.withWallet(alice).methods.mint_to_public(alice.getAddress(), tokenId).send().wait();
// Check owner is alice
const owner = await nft.methods.public_owner_of(tokenId).simulate();
expect(owner.equals(alice.getAddress())).toBe(true);
}, 300_000);
it('returns private NFTs owned by address', async () => {
const tokenId1 = 1n;
const tokenId2 = 2n;
// Initially no NFTs
const [initialNfts, initialLimitReached] = await nft.methods.get_private_nfts(alice.getAddress(), 0).simulate();
expect(initialNfts.every((id: bigint) => id === 0n)).toBe(true);
expect(initialLimitReached).toBe(false);
// Mint two NFTs to alice
await nft.withWallet(alice).methods.mint_to_private(alice.getAddress(), tokenId1).send().wait();
await nft.withWallet(alice).methods.mint_to_private(alice.getAddress(), tokenId2).send().wait();
// Check owned NFTs
const [ownedNfts, limitReached] = await nft.methods.get_private_nfts(alice.getAddress(), 0).simulate();
expect(ownedNfts).toContain(tokenId1);
expect(ownedNfts).toContain(tokenId2);
expect(limitReached).toBe(false);
}, 300_000);
// --- Access control tests ---
it('enforces minter role for minting', async () => {
const tokenId = 1n;
// Deploy new contract with bob as minter
const nftWithBobMinter = (await deployNFTWithMinter(bob)) as NFTContract;
// Alice attempts to mint when she's not the minter
await expect(
nftWithBobMinter.withWallet(alice).methods.mint_to_public(alice.getAddress(), tokenId).send().wait(),
).rejects.toThrow(/^Transaction 0x[0-9a-f]+ was app_logic_reverted\. Reason: $/);
await expect(
nftWithBobMinter.withWallet(alice).methods.mint_to_private(alice.getAddress(), tokenId).send().wait(),
).rejects.toThrow(/caller is not minter/);
// Bob can mint since he's the minter
await nftWithBobMinter.withWallet(bob).methods.mint_to_public(alice.getAddress(), tokenId).send().wait();
await assertOwnsPublicNFT(nftWithBobMinter, tokenId, alice.getAddress());
}, 300_000);
it('enforces ownership for public transfers', async () => {
const tokenId = 1n;
// Mint NFT to alice
await nft.withWallet(alice).methods.mint_to_public(alice.getAddress(), tokenId).send().wait();
// Bob attempts to transfer without ownership or authorization
await expect(
nft
.withWallet(bob)
.methods.transfer_public_to_public(bob.getAddress(), carl.getAddress(), tokenId, 0n)
.send()
.wait(),
).rejects.toThrow(/^Transaction 0x[0-9a-f]+ was app_logic_reverted\. Reason: $/);
// Alice can transfer since she's the owner
await nft
.withWallet(alice)
.methods.transfer_public_to_public(alice.getAddress(), bob.getAddress(), tokenId, 0n)
.send()
.wait();
await assertOwnsPublicNFT(nft, tokenId, bob.getAddress());
}, 300_000);
it('enforces ownership for private transfers', async () => {
const tokenId = 1n;
// Mint NFT privately to alice
await nft.withWallet(alice).methods.mint_to_private(alice.getAddress(), tokenId).send().wait();
// Bob attempts to transfer without ownership or authorization
await expect(
nft
.withWallet(bob)
.methods.transfer_private_to_private(bob.getAddress(), carl.getAddress(), tokenId, 0n)
.send()
.wait(),
).rejects.toThrow(/nft not found/);
// Alice can transfer since she's the owner
await nft
.withWallet(alice)
.methods.transfer_private_to_private(alice.getAddress(), bob.getAddress(), tokenId, 0n)
.send()
.wait();
await assertOwnsPrivateNFT(nft, tokenId, bob.getAddress());
}, 300_000);
it('enforces authorization for transfers', async () => {
const tokenId = 1n;
const invalidNonce = 999n;
// Mint NFT to alice
await nft.withWallet(alice).methods.mint_to_public(alice.getAddress(), tokenId).send().wait();
// Bob attempts transfer with invalid authorization
const transferCallInterface = nft
.withWallet(bob)
.methods.transfer_public_to_public(alice.getAddress(), bob.getAddress(), tokenId, invalidNonce);
const intent: IntentAction = {
caller: bob.getAddress(),
action: transferCallInterface,
};
// Create auth witness with wrong nonce
const witness = await carl.createAuthWit(intent); // Wrong signer (carl instead of alice)
// Transfer should fail with invalid authorization
await expect(transferCallInterface.send({ authWitnesses: [witness] }).wait()).rejects.toThrow();
// Alice still owns the NFT
await assertOwnsPublicNFT(nft, tokenId, alice.getAddress());
}, 300_000);
});
function bigIntToAsciiString(bigInt: any): string {
// Convert the BigInt to hex string, remove '0x' prefix if present
let hexString = bigInt.toString(16);
// Split into pairs of characters (bytes)
const pairs = [];
for (let i = 0; i < hexString.length; i += 2) {
// If we have an odd number of characters, pad with 0
const pair = hexString.slice(i, i + 2).padStart(2, '0');
pairs.push(pair);
}
// Convert each byte to its ASCII character
let asciiString = '';
for (const pair of pairs) {
const charCode = parseInt(pair, 16);
// Only add printable ASCII characters
if (charCode >= 32 && charCode <= 126) {
asciiString += String.fromCharCode(charCode);
}
}
return asciiString;
}