> For the complete documentation index, see [llms.txt](https://docs.bitsandblocks.tech/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.bitsandblocks.tech/practice/10-toolchain.md).

# 10. Toolchain quick map

|                 | Move (Aptos)                   | Soroban                                                                                                                 |
| --------------- | ------------------------------ | ----------------------------------------------------------------------------------------------------------------------- |
| Build           | `aptos move compile`           | `stellar contract build` (→ `target/wasm32v1-none/release/*.wasm`, optimized)                                           |
| Test            | `aptos move test`              | `cargo test` (native host, debugger-friendly)                                                                           |
| Publish         | `aptos move publish`           | `stellar contract deploy` (instance) / `upload` (code only)                                                             |
| Call            | `aptos move run`               | `stellar contract invoke --id C… -- fn --arg v`                                                                         |
| Dry-run/profile | simulation API                 | `stellar contract invoke … --send=no` (instructions, IO, fees)                                                          |
| Manifest        | `Move.toml`, named addresses   | `Cargo.toml` — `crate-type = ["lib","cdylib"]`, `overflow-checks = true` mandatory in release                           |
| Target          | Move bytecode                  | Wasm, `wasm32v1-none` (Rust ≥1.84), **128KB** limit (`cargo bloat` when over)                                           |
| Local net       | `aptos node run-local-testnet` | `stellar container start local` (RPC `localhost:8000/soroban/rpc`)                                                      |
| Keys            | profiles                       | `stellar keys generate alice --network testnet --fund`                                                                  |
| Testnet         | persistent                     | **resets quarterly** — script every deployment; runs the *next* protocol before mainnet, so it's your upgrade rehearsal |
| Explorer        | Aptos Explorer                 | [Stellar Lab](https://lab.stellar.org) — state, TTLs, archived-entry restore, live network limits                       |

[Stellar CLI manual](https://developers.stellar.org/docs/tools/cli/stellar-cli)

***

[← Cheat sheet index](/readme.md) · [← 9. Testing & assurance](/practice/09-testing-and-assurance.md) · [11. Porting reflexes — the grep-able checklist →](/practice/11-porting-reflexes.md)


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.bitsandblocks.tech/practice/10-toolchain.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
