Skip to content

Commit

Permalink
Updates to foundry deploy contract (#724)
Browse files Browse the repository at this point in the history
Co-authored-by: Joel Willmore <95916148+jlwllmr@users.noreply.github.com>
  • Loading branch information
dfox-consensys and jlwllmr committed Sep 12, 2024
1 parent 8cce6ac commit 4b57da6
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions docs/developers/quickstart/deploy-smart-contract/foundry.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 4b57da6

Please sign in to comment.