From 36bb47699c14d14e776a7905eb61511199599617 Mon Sep 17 00:00:00 2001 From: Ali Serag Date: Mon, 26 Aug 2024 13:22:30 -0700 Subject: [PATCH] Update flow-cli.md --- docs/build/getting-started/quickstarts/flow-cli.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/build/getting-started/quickstarts/flow-cli.md b/docs/build/getting-started/quickstarts/flow-cli.md index 044bf2f536..a7f36a2482 100644 --- a/docs/build/getting-started/quickstarts/flow-cli.md +++ b/docs/build/getting-started/quickstarts/flow-cli.md @@ -42,10 +42,10 @@ For additional details on how `flow.json` is configured, [read here.](../../../t ## Grabbing the HelloWorld Contract -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. +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 [0xa1296b1e2e90ca5b](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.