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

# Quickstart

## Overview

{% hint style="info" %}
The Vertices SDK currently supports the [Algorand Blockchain](https://www.algorand.com/technology/algorand-protocol). The following information relates to Algorand's ecosystem.
{% endhint %}

In this tutorial, we are going to run an example on your machine where **Alice** sends a payment transaction to **Bob**.

![](/files/-MYekXXgxmavul2rTK8-)

Here **Alice** sends 1 Algo to **Bob**.\
**Alice** is the **sender**, **Bob** the **receiver**.

## Before starting off

{% hint style="danger" %}
The Vertices SDK is still in beta. \
**This must not be used for production.**
{% endhint %}

## Get the source

Start by downloading the source of the repository along with the submodules:

```bash
# clone into current directory including its submodules
git clone --recurse-submodules https://github.com/vertices-network/c-vertices-sdk
cd c-vertices-sdk
```

## Set up your environment

We recommend using Conda to isolate your development environment and keep up to date with the dependencies.&#x20;

Install [miniconda](https://docs.conda.io/en/latest/miniconda.html) if you're running on x86\_64 architecture and [miniforge](https://github.com/conda-forge/miniforge) for ARM CPUs.

{% tabs %}
{% tab title="macOS" %}

```bash
brew install libsodium curl cmake python3 ccache
```

{% endtab %}

{% tab title="Linux" %}

```bash
apt-get install curl cmake python3 ccache libsodium-dev
```

{% endtab %}

{% tab title="Conda" %}

```
# create 'vertices' environment
conda env create -f utils/environment.yml

# when checking out another commit,  you might want 
# to make sure you're up to date with dependencies:
conda env update -f utils/environment.yml

# remember to activate your environment
conda activate vertices

# you are ready to code
```

{% endtab %}
{% endtabs %}

## Let's go

You can run Vertices on several targets. Get started quickly on your machine or try the example on your ESP32-based board:

{% content-ref url="/pages/-Ma-DTjiI5hAQJ2\_rZ2g" %}
[Unix](/vertices-sdk/quickstart/unix.md)
{% endcontent-ref %}

{% content-ref url="/pages/-Ma-DOWLyCJa2L43J97T" %}
[Microcontrollers](/vertices-sdk/quickstart/microcontrollers.md)
{% endcontent-ref %}


---

# 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.vertices.network/vertices-sdk/quickstart.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.
