From a9b604209fb5d0fe38ee51406c204ac2d60c66db Mon Sep 17 00:00:00 2001 From: Declan Fox Date: Sun, 8 Sep 2024 14:37:33 +0100 Subject: [PATCH] Updates to foundry deploy contract --- .../quickstart/deploy-smart-contract/foundry.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/developers/quickstart/deploy-smart-contract/foundry.md b/docs/developers/quickstart/deploy-smart-contract/foundry.md index e9821a187..7490b28ff 100644 --- a/docs/developers/quickstart/deploy-smart-contract/foundry.md +++ b/docs/developers/quickstart/deploy-smart-contract/foundry.md @@ -41,21 +41,21 @@ To create a Foundry project, run: forge init linea-tutorial ``` -And change into the directory: +Running `forge init` sets up a sample contract, test, and script for `Counter.sol`. + +Now change into the directory: ```bash cd linea-tutorial ``` -Running `forge init` sets up a sample contract, test, and script for `Counter.sol`. - ## Deploy a smart contract -To deploy a smart contract, we highly recommend using an Infura endpoint, as the public endpoint may experience -rate limiting and not meant for production use. +To deploy a smart contract we highly recommend using an Infura endpoint, as the public endpoint may experience +rate limiting and is not meant for production use. [Sign up for an Infura account](https://docs.infura.io/api/getting-started) to get an API key that -provides access the Linea endpoints. Assign the Linea endpoints you want to access, to your API key. +provides access to the Linea endpoints. Assign the Linea endpoints you want to access to your API key. :::caution