> For the complete documentation index, see [llms.txt](https://gabriel-j-shapiro.gitbook.io/metalex-docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://gabriel-j-shapiro.gitbook.io/metalex-docs/protocol-tutorials/tutorials.md).

# Overview

Tutorials are learning-oriented. Each one walks you, hand-in-hand, through a small but complete piece of the protocol, so that at the end you have done something concrete and understand *what just happened*.

If this is your first encounter with cyberCORPs, work through them in order.

1. [**Incorporate a cyberCORP**](/metalex-docs/protocol-tutorials/incorporate-a-cybercorp.md) — deploy your first onchain legal entity, issue its genesis cyberCERT, and inspect the register.
2. [**Run a cyberRAISE round**](/metalex-docs/protocol-tutorials/run-a-cyberraise-round.md) — configure a SAFE round, accept investor Expressions of Interest, escrow funds, and close.
3. [**Scripify and settle a secondary trade**](/metalex-docs/protocol-tutorials/scripify-and-settle.md) — mint cyberSCRIP from a cyberCERT, trade it, and settle a buyer back onto the register.

## Prerequisites for all tutorials

* [Foundry](https://book.getfoundry.sh/) installed.
* An RPC endpoint for Base Sepolia (free tier is fine).
* A funded test wallet on Base Sepolia.
* A clone of [`cybercorps-contracts`](https://github.com/MetaLex-Tech/cybercorps-contracts) with `forge build --via-ir` succeeding locally.
* Familiarity with Solidity at the level of *can read a contract*.

> **No live funds are required.** Every tutorial runs against a forked Base Sepolia node. Replace `<your-rpc>` with your endpoint in commands.

## What these tutorials are not

They are not how-to recipes. They cover one path each, and they explain why you are taking each step. For a goal-oriented recipe ("how do I disable force transfer permanently?"), see [How-to Guides](/metalex-docs/protocol-how-to-guides/how-to.md). For dry API detail, see [Reference](/metalex-docs/protocol-reference/reference.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://gabriel-j-shapiro.gitbook.io/metalex-docs/protocol-tutorials/tutorials.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.
