From e29148b379a435a9fefd846cc5fe78af6be7021d Mon Sep 17 00:00:00 2001 From: Santiago Palladino Date: Wed, 6 Sep 2023 10:22:41 -0300 Subject: [PATCH] docs: Link to local ethereum nodes in testing guide (#2061) Also fixes duplicated "local" usage spotted by @PhilWindle [here](https://github.com/AztecProtocol/aztec-packages/pull/1992#discussion_r1317238427). --- docs/docs/dev_docs/dapps/testing.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/dev_docs/dapps/testing.md b/docs/docs/dev_docs/dapps/testing.md index 93fe000049e..c8395ae51a6 100644 --- a/docs/docs/dev_docs/dapps/testing.md +++ b/docs/docs/dev_docs/dapps/testing.md @@ -63,7 +63,7 @@ Instead of creating new accounts in our test suite, we can use the ones already ### Running Sandbox in the nodejs process -Instead of connecting to a local running Sandbox instance, you can also start your own Sandbox within the nodejs process running your tests, for an easier setup. To do this, import the `@aztec/aztec-sandbox` package in your project, and run `createSandbox` during setup. Note that this will still require you to run a local Ethereum node like Anvil locally. +Instead of connecting to a local running Sandbox instance, you can also start your own Sandbox within the nodejs process running your tests, for an easier setup. To do this, import the `@aztec/aztec-sandbox` package in your project, and run `createSandbox` during setup. Note that this will still require you to run a local Ethereum development node like [Anvil](https://book.getfoundry.sh/anvil/), [Hardhat Network](https://hardhat.org/hardhat-network/docs/overview), or [Ganache](https://trufflesuite.com/ganache/). #include_code in-proc-sandbox /yarn-project/end-to-end/src/guides/dapp_testing.test.ts typescript