Nemean is a CLI and SDK that provides tooling for custodians and engineers to interact with the Aleo network.
The library provides a Go wrapper around Aleo objects while relying on Rust for the underlying cryptography.
This includes:
- An RPC client compatible with SnarkOS
- Basic send and receive support.
The cli provides an RPC client to communicate with SnarkOS:
make build
./nemean
Nemean can also be used as a library to handle wallet management.
docker build -t nemean -f Dockerfile .
# create an account
docker run nemean /bin/bash -c "./nemean create"
# create a new aleo account
./nemean create
# get the latest blockheight
./nemean -rpchost=127.0.0.1:3035 latestblockheight
Documentation can be found in /doc
.
- Overview of receiving and sending.
- Guide for wallet engineers.
- Setting up Nemean on an airgapped machine.
This software is in active development. Do not use for production.