Skip to content
Open
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
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ This structure provides flexibility as your application grows, allowing you to a
To create a new contract crate, run the following command from the workspace root:

```bash
miden cargo-miden new --account contracts/my-account
miden new --account contracts/my-account
```

This will scaffold a new contract crate inside the `contracts/` directory with all the necessary boilerplate.
Expand All @@ -85,11 +85,11 @@ Tests are located in `integration/tests/`. To add a new test:

```bash
# Compile a specific contract
miden cargo-miden build --manifest-path contracts/counter-account/Cargo.toml
miden build --manifest-path contracts/counter-account/Cargo.toml

# Or navigate to the contract directory
cd contracts/counter-account
miden cargo-miden build
miden build
```

### Run a Binary
Expand Down