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

WEB3-117: Fix broken link in deployment guide #137

Merged
merged 1 commit into from
Oct 28, 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
11 changes: 6 additions & 5 deletions deployment-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ Once you've written your [contracts] and your [methods], and [tested] your progr

You can either:

- [Deploy your project to a local network]
- [Deploy to a testnet]
- [Deploy to Ethereum Mainnet]
- [Deploy your project to a local network][section-local]
- [Deploy to a testnet][section-testnet]
- [Deploy to Ethereum Mainnet][section-mainnet]

## Deploy your project on a local network

Expand Down Expand Up @@ -248,8 +248,9 @@ You can deploy your contract on Ethereum Mainnet as follows:
cast call --rpc-url https://eth-mainnet.g.alchemy.com/v2/${ALCHEMY_API_KEY:?} ${EVEN_NUMBER_ADDRESS:?} 'get()(uint256)'
```

[Deploy to Ethereum Mainnet]: #deploy-your-project-on-ethereum-mainnet
[Deploy your project to a local network]: #deploy-your-project-on-a-local-network
[section-mainnet]: #deploy-your-project-on-ethereum-mainnet
[section-local]: #deploy-your-project-on-a-local-network
[section-testnet]: #deploy-your-project-on-sepolia-testnet
[RISC Zero]: https://www.risczero.com/
[Docker]: https://docs.docker.com/engine/install/
[contracts]: ./contracts/
Expand Down
Loading