Installation Guide

Prerequisites

Download the latest toolchain for you programming language:

API-specific Installation

Choose the APIs you need for your project:

Autonomi Client

cargo add autonomi

Ant Node

cargo add ant-node

BLS Threshold Crypto

cargo add blsttc

Self Encryption

cargo add self_encryption

Verifying Installation

Test your installation by running a simple client initialization:

use autonomi::Client;

let client = Client::init().await.expect("Could not initialize the client");
println!("Client initialized successfully");

Next Steps

Last updated