dora-gt / interledger-rs

(Work In Progress) Interledger implementation in Rust

Home Page:https://interledger.rs

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Interledger.rs


Interledger implementation in Rust đź’¸

crates.io Interledger.rs Documentation CircleCI Rust Version Docker Image

Connecting to the Testnet

See the testnet instructions to quickly connect to the testnet with a bundle that includes the Interledger.rs node and settlement engines.

Understanding Interledger.rs

Installation and Usage

To run the Interledger.rs components by themselves (rather than the testnet-bundle), you can follow these instructions:

Using Docker

Prerequisites

  • Docker

Install

docker pull interledgerrs/node
docker pull interledgerrs/ilp-cli
docker pull interledgerrs/settlement-engines

Run

# This runs the sender / receiver / router bundle
docker run -it interledgerrs/node

# This is a simple CLI for interacting with the node's HTTP API
docker run -it --rm interledgerrs/ilp-cli

# This includes the Settlement Engines written in Rust
docker run -it interledgerrs/settlement-engines

Building From Source

Prerequisites

  • Git
  • Rust - latest stable version

Install

# 1. Clone the repsitory and change the working directory
git clone https://github.com/interledger-rs/interledger-rs && cd interledger-rs

# 2. Build interledger-rs (add `--release` to compile the release version, which is slower to compile but faster to run)
cargo build

You can find the Interledger Settlement Engines in a separate repository.

Run

# This runs the ilp-node
cargo run -p ilp-node -- # Put CLI args after the "--"

cargo run -p ilp-cli -- # Put CLI args after the "--"

Append the --help flag to see available options.

See configuration for more details on how the node is configured.

Examples

See the examples for demos of Interledger functionality and how to use the Interledger.rs implementation.

Contributing

Contributions are very welcome and if you're interested in getting involved, see CONTRIBUTING.md. We're more than happy to answer questions and mentor you in making your first contributions to Interledger.rs (even if you've never written in Rust before)!

About

(Work In Progress) Interledger implementation in Rust

https://interledger.rs

License:Other


Languages

Language:Rust 97.5%Language:Shell 0.8%Language:JavaScript 0.8%Language:Lua 0.5%Language:Dockerfile 0.4%