{"id":13511282,"url":"https://github.com/interledger/interledger-rs","last_synced_at":"2025-04-07T08:28:43.110Z","repository":{"id":23214639,"uuid":"96478880","full_name":"interledger/interledger-rs","owner":"interledger","description":"An easy-to-use, high-performance Interledger implementation written in Rust","archived":false,"fork":false,"pushed_at":"2023-06-16T05:31:55.000Z","size":6548,"stargazers_count":201,"open_issues_count":87,"forks_count":70,"subscribers_count":25,"default_branch":"master","last_synced_at":"2024-10-30T04:54:29.891Z","etag":null,"topics":["bitcoin","blockchain","ethereum","ilp","interledger","interoperability","lightning","micropayments","nanopayments","payment","rust","streaming","xrp"],"latest_commit_sha":null,"homepage":"http://interledger.rs","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/interledger.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"docs/CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null}},"created_at":"2017-07-06T23:04:01.000Z","updated_at":"2024-10-13T09:37:15.000Z","dependencies_parsed_at":"2023-02-17T00:01:48.448Z","dependency_job_id":null,"html_url":"https://github.com/interledger/interledger-rs","commit_stats":{"total_commits":1280,"total_committers":34,"mean_commits":37.64705882352941,"dds":0.72734375,"last_synced_commit":"544b6dbcd299087d16babc3377e4e014f87d68ec"},"previous_names":["interledger-rs/interledger-rs"],"tags_count":105,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/interledger%2Finterledger-rs","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/interledger%2Finterledger-rs/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/interledger%2Finterledger-rs/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/interledger%2Finterledger-rs/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/interledger","download_url":"https://codeload.github.com/interledger/interledger-rs/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246916753,"owners_count":20854514,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["bitcoin","blockchain","ethereum","ilp","interledger","interoperability","lightning","micropayments","nanopayments","payment","rust","streaming","xrp"],"created_at":"2024-08-01T03:00:46.236Z","updated_at":"2025-04-07T08:28:43.081Z","avatar_url":"https://github.com/interledger.png","language":"Rust","funding_links":[],"categories":["Blockchains","Social Finance","Rust"],"sub_categories":["Financial Inclusion"],"readme":"\u003cp align=\"center\"\u003e\n  \u003cimg src=\"docs/interledger-rs.svg\" width=\"700\" alt=\"Interledger.rs\"\u003e\n\u003c/p\u003e\n\n---\n\u003e Interledger implementation in Rust :money_with_wings:\n\n[![crates.io](https://img.shields.io/crates/v/interledger.svg)](https://crates.io/crates/interledger)\n[![Interledger.rs Documentation](https://docs.rs/interledger/badge.svg)](https://docs.rs/interledger)\n[![CircleCI](https://circleci.com/gh/interledger-rs/interledger-rs.svg?style=shield)](https://circleci.com/gh/interledger-rs/interledger-rs)\n![rustc](https://img.shields.io/badge/rustc-1.39+-red.svg)\n![Rust](https://img.shields.io/badge/rust-stable-Success)\n[![Docker Image](https://img.shields.io/docker/pulls/interledgerrs/ilp-node.svg?maxAge=2592000)](https://hub.docker.com/r/interledgerrs/ilp-node/)\n[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)\n\n## Requirements\n\nAll crates require Rust 2018 edition and are tested on the following channels:\n\n- `stable`\n\n## Connecting to the Testnet\n\nSee the [testnet instructions](./docs/testnet.md) to quickly connect to the testnet with a bundle that includes the Interledger.rs node and settlement engines.\n\n## Understanding Interledger.rs\n- [HTTP API](./docs/api.md)\n- [Rust API](https://docs.rs/interledger)\n- [Interledger.rs Architecture](./docs/architecture.md)\n- [Interledger Forum](https://forum.interledger.org) for general questions about the Interledger Protocol and Project\n\n## Installation and Usage\n\nTo run the Interledger.rs components by themselves (rather than the `testnet-bundle`), you can follow these instructions:\n\n### Using Docker\n\n#### Prerequisites\n\n- Docker\n\n#### Install\n\n```bash #\ndocker pull interledgerrs/ilp-node\ndocker pull interledgerrs/ilp-cli\ndocker pull interledgerrs/ilp-settlement-ethereum\n```\n\n#### Run\n\n```bash #\n# This runs the sender / receiver / router bundle\ndocker run -it interledgerrs/ilp-node\n\n# This is a simple CLI for interacting with the node's HTTP API\ndocker run -it --rm interledgerrs/ilp-cli\n\n# This includes the Ethereum Settlement Engines written in Rust\ndocker run -it interledgerrs/ilp-settlement-ethereum\n```\n\n### Building From Source\n\n#### Prerequisites\n\n- Git\n- [Redis](https://redis.io/)\n- [Rust](https://www.rust-lang.org/tools/install) - latest stable version\n\n#### Install\n\n```bash #\n# 1. Clone the repsitory and change the working directory\ngit clone https://github.com/interledger-rs/interledger-rs \u0026\u0026 cd interledger-rs\n\n# 2. Build interledger-rs (add `--release` to compile the release version, which is slower to compile but faster to run)\ncargo build\n```\n\nYou can find the Interledger Settlement Engines in a [separate repository](https://github.com/interledger-rs/settlement-engines).\n\n#### Run\n\n```bash #\n# This runs the ilp-node\ncargo run --bin ilp-node -- # Put CLI args after the \"--\"\n\ncargo run --bin ilp-cli -- # Put CLI args after the \"--\"\n```\n\nAppend the `--help` flag to see available options.\n\nSee [configuration](./docs/configuration.md) for more details on how the node is configured.\n\n#### Configuring Redis\n\nWe have some account settings such as `amount_per_minute_limit` or `packets_per_minute_limit`. In order to enable these options, you need to load the [redis-cell](https://github.com/brandur/redis-cell) module as follows. *You don't need to load this module unless you use the rate-limit options.*\n\n```\n# in your redis config file\n# libredis_cell.so file will be found in crates/interledger-store/external\nloadmodule /path/to/modules/libredis_cell.so\n```\n\nor you can specify an argument when you start up the redis instance as follows.\n\n```\nredis-server --loadmodule /path/to/modules/libredis_cell.so\n```\n\n## Examples\n\nSee the [examples](./examples/README.md) for demos of Interledger functionality and how to use the Interledger.rs implementation.\n\n## Contributing\n\nContributions are very welcome and if you're interested in getting involved, see [CONTRIBUTING.md](docs/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)!\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Finterledger%2Finterledger-rs","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Finterledger%2Finterledger-rs","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Finterledger%2Finterledger-rs/lists"}