Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/emschwartz/ilp-plugin-balance-wrapper
- Owner: emschwartz
- Created: 2018-06-22T22:10:30.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-06-22T23:10:14.000Z (over 6 years ago)
- Last Synced: 2024-12-20T15:13:12.128Z (about 1 month ago)
- Topics: balance, interledger, ledger-plugin
- Language: JavaScript
- Homepage:
- Size: 7.81 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```