Skip to content
This repository was archived by the owner on Jul 10, 2026. It is now read-only.

Commit b883228

Browse files
committed
feat: add noir tests
1 parent ddcf651 commit b883228

20 files changed

Lines changed: 2390 additions & 1 deletion

src/multitoken_contract/Nargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,4 @@ type = "contract"
88
aztec = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v4.3.0", directory = "noir-projects/aztec-nr/aztec" }
99
compressed_string = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v4.3.0", directory = "noir-projects/aztec-nr/compressed-string" }
1010
multitoken_authorization_contract = { path = "src/test/multitoken_authorization_contract" }
11+
generic_proxy = { path = "../generic_proxy" }

src/multitoken_contract/src/main.nr

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
pub mod types;
2+
pub mod test;
23

34
use aztec::macros::aztec;
45

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
mod view;
2+
mod mint_to_private;
3+
mod mint_to_public;
4+
mod mint_to_commitment;
5+
mod transfer_public_to_public;
6+
mod transfer_private_to_private;
7+
mod transfer_private_to_public;
8+
mod transfer_public_to_private;
9+
mod transfer_private_to_commitment;
10+
mod transfer_public_to_commitment;
11+
mod burn_private;
12+
mod burn_public;
13+
mod authorization;
14+
mod balance_of;
15+
mod initialize_transfer_commitment;
16+
pub mod utils;

0 commit comments

Comments
 (0)