Skip to content

Commit

Permalink
update broken links
Browse files Browse the repository at this point in the history
  • Loading branch information
Frank Chen authored and Frank Chen committed Feb 14, 2024
1 parent 418a587 commit d982fa4
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 5 deletions.
2 changes: 1 addition & 1 deletion documentation/00_getting_started.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,4 +84,4 @@ If you're interested in learning more about Aleo:

✍️ | Community Blog ~ **https://medium.com/@AleoHQ**

### Looking for [**Developer Resources?**](./leo/07_resources.md)
### Looking for [**Developer Resources?**](./leo/08_resources.md)
8 changes: 4 additions & 4 deletions documentation/00_leo_overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,13 +52,13 @@ The Leo CLI provides a suite of commands to make programming in Leo easy.
## Additional Material
Install Leo for your favorite code [**editor**](./leo/06_tooling.md).

For additional developer resources such as examples and community projects, see [**Developer Resources**](./leo/07_resources.md).
For additional developer resources such as examples and community projects, see [**Developer Resources**](./leo/08_resources.md).

Is your Leo code formatted correctly? Check out the [**Style Guide**](./leo/07_resources.md#style-guide) and [**Common Patterns**](./leo/07_resources.md#common-patterns) for the official guidelines.
Is your Leo code formatted correctly? Check out the [**Style Guide**](./leo/08_resources.md#style-guide) and [**Common Patterns**](./leo/08_resources.md#common-patterns) for the official guidelines.

Found a bug? Have an idea for a feature? File an issue on the [**Leo GitHub**](https://github.com/AleoHQ/leo/issues/new/choose).

See the [**Contributing Guide**](./leo/07_resources.md#contributing) for more information.
See the [**Contributing Guide**](./leo/08_resources.md#contributing) for more information.

## Examples
- [Private Auction](./leo/08_auction.md)
- [Private Auction](./leo/10_auction.md)
8 changes: 8 additions & 0 deletions documentation/leo/07_leo_playground.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,12 @@ You may choose to download any of the examples or programs you've written on you

## 1. Tools for Deployment

<!-- markdown-link-check-disable -->
- Install [Leo](https://developer.aleo.org/leo/installation)
- Install [Aleo's transaction cannon](https://github.com/AleoHQ/tx-cannon), which will help you deploy, execute, and stress test your Leo programs.

This comment has been minimized.

Copy link
@gundeep

gundeep Jul 28, 2024

Can we please fix the broken link to Aleo Transaction Canon?

- Install [snarkOS](https://github.com/AleoHQ/snarkOS), which will help spin up a live devnet either locally or on AWS.
- Install [tmux](https://formulae.brew.sh/formula/tmux), because the devnet dashboard uses it.
<!-- markdown-link-check-enable -->

## 2. Start a local Aleo Devnet

Expand Down Expand Up @@ -72,6 +74,7 @@ The height number should be moving up.
### Transaction Cannon Deployment
<!-- markdown-link-check-disable -->
Use the transaction cannon to deploy your program.
```bash
Expand All @@ -80,6 +83,7 @@ tx-cannon deploy <project>/build/<project>.aleo -k <node-private-key-you-jotted-
```
You can check that your deployment was successful on your network using: http://localhost:3030/testnet3/transaction/`<your-txn-id>`.
<!-- markdown-link-check-enable -->
## 6. Execution On-Chain using the Transaction Cannon
Expand All @@ -98,13 +102,15 @@ fee = 3
The `.toml` file basically orders transactions to be executed. When we call the `tx-cannon execute` command, we ask it to look for the program we deployed on our local devnet and execute it using the provided inputs and the corresponding private key.
<!-- markdown-link-check-disable -->
```bash
tx-cannon batch-execute --test helloworld.toml -e http://localhost:3030
```
Again, check that the program executed: http://localhost:3030/testnet3/transaction/`<your-txn-id>`.
There's much more functionality to be explored in the [tx-cannon repository](https://github.com/AleoHQ/tx-cannon). You can batch deploy, execute, and transfer, so take advantage of this tool to run development tests on your application!
<!-- markdown-link-check-disable -->
Congratulations, you took a project off Playground and successfully deployed it to an Aleo devnet!
Expand Down Expand Up @@ -147,7 +153,9 @@ Congratulations on becoming a Leo contributor! 🎉
1. You downloaded a project off of [Leo Playground](https://play.leo-lang.org/).
<!-- markdown-link-check-disable -->
2. You installed [Leo](https://developer.aleo.org/leo/), our statically-typed programming language built for writing private applications, our [transaction cannon](https://github.com/AleoHQ/tx-cannon) for easy deployment and execution, and [snarkOS](https://github.com/AleoHQ/snarkOS), the data availability layer.
<!-- markdown-link-check-enable -->
3. You started a local devnet using the snarkOS repository.
Expand Down

0 comments on commit d982fa4

Please sign in to comment.