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
- Host: GitHub
- URL: https://github.com/eliezhao/aleo-agent
- Owner: eliezhao
- License: apache-2.0
- Created: 2024-05-07T02:16:56.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2024-06-27T03:11:41.000Z (almost 2 years ago)
- Last Synced: 2026-05-22T23:06:57.829Z (about 1 month ago)
- Topics: agent, aleo, blockchain, client, rust, zeroknowledge
- Language: Rust
- Homepage: https://crates.io/crates/aleo-agent/
- Size: 160 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```