From fceea102482ca2894d8064cecc0222ed238f4dbb Mon Sep 17 00:00:00 2001 From: Ali Serag Date: Mon, 26 Aug 2024 13:21:03 -0700 Subject: [PATCH] Update flow-cli.md --- docs/build/getting-started/quickstarts/flow-cli.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/build/getting-started/quickstarts/flow-cli.md b/docs/build/getting-started/quickstarts/flow-cli.md index 044bf2f536..09d529ebdf 100644 --- a/docs/build/getting-started/quickstarts/flow-cli.md +++ b/docs/build/getting-started/quickstarts/flow-cli.md @@ -45,7 +45,7 @@ For additional details on how `flow.json` is configured, [read here.](../../../t For this demo, we are going to be interacting with a simple `HelloWorld` contract that is already deployed on Flow's `testnet` network on account [0x9dca641e9a4b691b](https://contractbrowser.com/A.9dca641e9a4b691b.HelloWorld). In order to grab this project dependency, we'll use Flow's [Dependency Manager](../../../tools/flow-cli/dependency-manager.md) to install it into our project using a source string that defines the network, address, and contract name of the contract we want to import. ``` -flow dependencies add testnet://0x9dca641e9a4b691b.HelloWorld +flow dependencies add testnet://0xa1296b1e2e90ca5b.HelloWorld ``` This will add the `HelloWorld` contract and any of its dependencies to an `imports` directory in your project (we recommend adding this directory to your .gitignore file). It will also add any dependencies to your `flow.json` file.