Skip to content

Latest commit

 

History

History
42 lines (26 loc) · 1.13 KB

README.md

File metadata and controls

42 lines (26 loc) · 1.13 KB

Nemean

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.

Getting Started

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

docker build -t nemean -f Dockerfile .

# create an account
docker run  nemean /bin/bash -c "./nemean create"

Examples

# create a new aleo account
./nemean create

# get the latest blockheight
./nemean -rpchost=127.0.0.1:3035 latestblockheight

Documentation

Documentation can be found in /doc.

This software is in active development. Do not use for production.