Getting Started

Build Requirements

  • CMake >= 4.0

  • The Tashi Vertex shared library (libtashi-vertex.so / .dylib / .dll), fetched automatically by the build script

Installation

Add the crate to your project:

cargo add tashi-vertex

The build script will automatically download the Tashi Vertex shared library during compilation.

Quick Start

Generate a keypair for your node:

use tashi_vertex::KeySecret;

let secret = KeySecret::generate();
let public = secret.public();

println!("Secret: {secret}"); // Base58-encoded DER
println!("Public: {public}");

Run a minimal consensus network:

Last updated