From ba08b65d62cdeb8c0cc63a9335177b00992c2b07 Mon Sep 17 00:00:00 2001 From: filip Date: Tue, 27 Aug 2024 08:34:41 +0200 Subject: [PATCH 1/2] fixed typo --- .../advanced/token_bridge/2_minting_on_aztec.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/tutorials/codealong/contract_tutorials/advanced/token_bridge/2_minting_on_aztec.md b/docs/docs/tutorials/codealong/contract_tutorials/advanced/token_bridge/2_minting_on_aztec.md index aa7a7e4ac2d..7316793ec39 100644 --- a/docs/docs/tutorials/codealong/contract_tutorials/advanced/token_bridge/2_minting_on_aztec.md +++ b/docs/docs/tutorials/codealong/contract_tutorials/advanced/token_bridge/2_minting_on_aztec.md @@ -6,7 +6,7 @@ In this step we will start writing our Aztec.nr bridge smart contract and write ## Initial contract setup -In our `token-bridge` Aztec project in `aztec-contracts`, under `src` there is an example `main.nr` file. Paste this to define imports: +In our `token_bridge` Aztec project in `aztec-contracts`, under `src` there is an example `main.nr` file. Paste this to define imports: ```rust #include_code token_bridge_imports /noir-projects/noir-contracts/contracts/token_bridge_contract/src/main.nr raw From 5bdd360cf2a2c56fba78b0ab3dcbd1ac8d74632b Mon Sep 17 00:00:00 2001 From: AztecBot Date: Tue, 27 Aug 2024 08:55:30 +0200 Subject: [PATCH 2/2] remove unecessary cds --- .../advanced/token_bridge/4_typescript_glue_code.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/docs/docs/tutorials/codealong/contract_tutorials/advanced/token_bridge/4_typescript_glue_code.md b/docs/docs/tutorials/codealong/contract_tutorials/advanced/token_bridge/4_typescript_glue_code.md index 674be65f37d..3a349ae6d26 100644 --- a/docs/docs/tutorials/codealong/contract_tutorials/advanced/token_bridge/4_typescript_glue_code.md +++ b/docs/docs/tutorials/codealong/contract_tutorials/advanced/token_bridge/4_typescript_glue_code.md @@ -9,8 +9,7 @@ In this step we will write a Typescript test to interact with the sandbox and ca We need some helper files that can keep our code clean. Inside your `src/test` directory: ```bash -cd fixtures -cd .. && mkdir shared && cd shared +mkdir shared && cd shared touch cross_chain_test_harness.ts ```