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

Commit 307e882

Browse files
committed
chore: init multitoken_contract
1 parent d6dfc3a commit 307e882

4 files changed

Lines changed: 22 additions & 0 deletions

File tree

Nargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ members = [
66
"src/vault_deployer",
77
"src/dripper",
88
"src/nft_contract",
9+
"src/multitoken_contract",
910
"src/escrow_contract",
1011
"src/escrow_contract/src/test/test_logic_contract",
1112
"src/generic_proxy",

src/multitoken_contract/Nargo.toml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
[package]
2+
name = "multitoken_contract"
3+
authors = [""]
4+
compiler_version = ">=1.0.0"
5+
type = "contract"
6+
7+
[dependencies]
8+
aztec = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v4.3.0", directory = "noir-projects/aztec-nr/aztec" }

src/multitoken_contract/README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# MultiToken Contract
2+
3+
Initial scaffolding for the `MultiToken` contract. It currently exposes only an empty public initializer (`constructor`) and is intended as the starting point for further development.
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
use aztec::macros::aztec;
2+
3+
#[aztec]
4+
pub contract MultiToken {
5+
use aztec::macros::functions::{external, initializer};
6+
7+
#[external("public")]
8+
#[initializer]
9+
fn constructor() {}
10+
}

0 commit comments

Comments
 (0)