Ergo RustKit

Introduction

A SDK for building applications on the Ergo blockchain. Our goal is to create a library that creates a simple and easy to use interface for developers to build applications. Currently, the library is in the early stages of development and is not recommended for production use. The full roadmap can be found below!

Setup

The Ergo RustKit is published on crates.io. The crate can be found here.

ergo-rustkit = "0.1.2"

Examples

Simple Send

```rust let mut w: RustKitWallet = RustKitWallet::new("MNEMONIC", "MNEMONICPASSWORD"); w.updateindex0address();

let mut tx: RustKitTransaction = RustKitTransaction::new("RECIPIENT ADDRESS", 100000000, 1100000); tx.build(&w); tx.sign(&w); let resp: String = tx.submit().unwrap(); ```

Send with token

```rust let mut w: RustKitWallet = RustKitWallet::new("MNEMONIC", "MNEMONICPASSWORD"); w.updateindex0address();

let mut tx: RustKitTransaction = RustKitTransaction::new("RECIPIENT ADDRESS", 100000000, 1100000); tx.add_token("TOKEN ID", 1000); tx.build(&w); tx.sign(&w); let resp: String = tx.submit().unwrap(); ```

Multi-Recipient Send

```rust let mut w: RustKitWallet = RustKitWallet::new("MNEMONIC", "MNEMONICPASSWORD"); w.updateindex0address();

let mut tx: RustKitTransaction = RustKitTransaction::new("RECIPIENT ADDRESS", 100000000, 1100000); tx.addtoken("TOKEN ID", 1000); tx.addreciever("SECOND RECIPIENT ADDRESS", 100000000, Some("TOKEN ID"), Some(1000)); tx.build(&w); tx.sign(&w); let resp: String = tx.submit().unwrap(); ```

Roadmap

Projects using Ergo RustKit

Coming Soon...

Contributing

Rust-Ergo is always open for contributions! If you would like to contribute, please open a PR and we will review it as soon as possible.