An open API service indexing awesome lists of open source software.

https://github.com/eliezhao/aleo-agent

aleo-agent is a simple-to-use library to interact with the Aleo Network in Rust
https://github.com/eliezhao/aleo-agent

agent aleo blockchain client rust zeroknowledge

Last synced: 3 days ago
JSON representation

aleo-agent is a simple-to-use library to interact with the Aleo Network in Rust

Awesome Lists containing this project

README

          

# Aleo Network Rust Agent Repository
**aleo-agent is a simple-to-use library to interact with the Aleo Network in Rust.
The current repository is in version 1.0.0-alpha, indicating that it is still in the development phase.
Examples available for the current version can be found in the examples folder of this repository.
The current version of the agent is compatible with the `Testnet-Beta` test network.**

## Building
I use `cargo` to build this repo. Make sure you have rust stable installed. To build the repo:

```shell
cargo build
```

## Release
To release, increase the version number in all crates and run `cargo build` to update the lock file.

## Docs
Generate usage documentation using cargo or check [docs.rs](https://docs.rs/aleo-agent/latest/aleo_agent/)

```shell
cargo doc --no-deps --open
```