Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updates to foundry deploy contract #724

Merged
merged 2 commits into from
Sep 12, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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