Vertices Docs
  • Welcome 👨‍💻
  • ⚙️ Vertices SDK
    • Quickstart
      • Unix
        • New account
        • Pay transaction
        • Application call
      • Microcontrollers
        • PlatformIO
        • ESP-IDF
        • Zephyr (soon)
    • API Reference
      • Providers
      • Accounts
      • Events
      • Transactions
      • Applications
    • Porting guide
      • Starting from scratch
      • New vertex
      • HTTP Client
      • Handling events
Powered by GitBook
On this page
  • Setup
  • Compile
  • Binary location

Was this helpful?

  1. ⚙️ Vertices SDK
  2. Quickstart

Unix

Run the Vertices SDK on your machine.

PreviousQuickstartNextNew account

Last updated 3 years ago

Was this helpful?

Setup

Make sure you've followed the previous steps.

Compile

Let's build the example. Go to the root directory and follow those steps:

mkdir build && cd build
cmake ..

# build the Unix example
make unix_example

Binary location

The executable is located at: ./examples/unix/unix_example

Quickstart