Skip to content
Merged
Show file tree
Hide file tree
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
5 changes: 5 additions & 0 deletions .github/mlc_config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"retryOn429": true,
"retryCount": 3,
"fallbackRetryDelay": "30s"
}
1 change: 1 addition & 0 deletions .github/workflows/ci-branches.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,4 @@ jobs:
- uses: gaurav-nelson/github-action-markdown-link-check@v1
with:
folder-path: 'documentation'
config-file: '.github/mlc_config.json'
3 changes: 3 additions & 0 deletions documentation/cli/03_build.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,11 @@ On invoking the build command, Leo automatically creates a `build/⁠` and `outp
Leo 2 statements after dead code elimination.
Leo The program checksum is: '[...]'.
Leo ✅ Compiled '{PROGRAM_NAME}.aleo' into Aleo instructions.
Leo ✅ Generated ABI at 'build/abi.json'.
```

The build also generates an **ABI file** at `build/abi.json` describing your program's public interface (transitions, mappings, and types). See the [ABI Generation guide](../guides/11_abi.md) for details on the format and type lowering specification.

### Flags:
```
--offline
Expand Down
2 changes: 2 additions & 0 deletions documentation/guides/00_overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,5 @@ There's a lot to learn about Leo! To help tame the complexity, we've put togethe

- [**Upgrading Programs**](./10_program_upgradability.md) - Coming soon!

- [**ABI Generation**](./11_abi.md) - Learn about the ABI format and type lowering for SDK integration.

Loading