Skip to content

Commit

Permalink
rm protocol_types dep
Browse files Browse the repository at this point in the history
  • Loading branch information
critesjosh committed Jan 29, 2024
1 parent c946cd1 commit 7a52f0b
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions docs/docs/developers/tutorials/token_portal/setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,6 @@ type = "contract"
[dependencies]
aztec = { git="https://github.com/AztecProtocol/aztec-packages/", tag="#include_aztec_version", directory="yarn-project/aztec-nr/aztec" }
token_portal_content_hash_lib = { git="https://github.com/AztecProtocol/aztec-packages/", tag="#include_aztec_version", directory="yarn-project/noir-contracts/contracts/token_portal_content_hash_lib" }
protocol_types = { git="https://github.com/AztecProtocol/aztec-packages/", tag="#include_aztec_version", directory="yarn-project/noir-protocol-circuits/src/crates/types"}
```

We will also be writing some helper functions that should exist elsewhere so we don't overcomplicated our contract. In `src` create two more files - one called `util.nr` and one called `token_interface` - so your dir structure should now look like this:
Expand Down Expand Up @@ -156,11 +155,11 @@ Your `package.json` should look something like this (do not copy and paste):
"license": "MIT",
"private": true,
"type": "module",
"dependencies": {
"dep": "version",
"dependencies": {
"dep": "version"
},
"devDependencies": {
"dep": "version",
"dep": "version"
},
"scripts": {
"test": "NODE_NO_WARNINGS=1 node --experimental-vm-modules $(yarn bin jest)"
Expand Down

0 comments on commit 7a52f0b

Please sign in to comment.