Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/emschwartz/ilp-plugin-balance-wrapper

Wrap an Interledger plugin to add balance tracking logic
https://github.com/emschwartz/ilp-plugin-balance-wrapper

balance interledger ledger-plugin

Last synced: 22 days ago
JSON representation

Wrap an Interledger plugin to add balance tracking logic

Awesome Lists containing this project

README

        

# Plugin Balance Wrapper
> Wrap an Interledger Ledger Plugin to extend it with simple balance logic

## Usage

```js
const { PluginBalanceWrapper } = require('ilp-plugin-balance-wrapper')
const plugin = new PluginBalanceWrapper({
plugin: pluginToWrap,
settleThreshold: 0,
settleTo: 0,
maximum: 1000
})
// Now use the plugin as normal
```