From 4839ed99aa3fd6a4a2329612a97a86f4d02eae2d Mon Sep 17 00:00:00 2001 From: josh crites Date: Wed, 1 May 2024 13:18:30 -0400 Subject: [PATCH] fix(docs): add codegen to `aztec-builder` command (#6098) Missed the command in the original PR. Also note that the `aztec-builder` is not automatically installed with the sandbox, so for the command to work in the tutorial, devs will need to install it with something like `npm i -g @aztec/builder` unless the sandbox install command is updated. --- .../docs/developers/tutorials/token_portal/withdrawing_to_l1.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/developers/tutorials/token_portal/withdrawing_to_l1.md b/docs/docs/developers/tutorials/token_portal/withdrawing_to_l1.md index 82d8ca8cfbe..14723ed9c4b 100644 --- a/docs/docs/developers/tutorials/token_portal/withdrawing_to_l1.md +++ b/docs/docs/developers/tutorials/token_portal/withdrawing_to_l1.md @@ -84,7 +84,7 @@ You may get some unused variable warnings - you can ignore these. And generate the TypeScript interface for the contract and add it to the test dir. Run this inside `aztec-contracts/token_bridge`: ```bash -aztec-builder target -o ../../src/test/fixtures +aztec-builder codegen target -o ../../src/test/fixtures ``` This will create a TS interface inside `fixtures` dir in our `src/test` folder!