2.0.3 • Published 6 years ago

ilp-compat-plugin v2.0.3

Weekly downloads
143
License
Apache-2.0
Repository
github
Last release
6 years ago

ilp-plugin-compat

ILP plugin compatibility layer

Turns any LPI1 plugin into an LPI2 plugin.

Usage

const compat = require('ilp-compat-plugin')

const Plugin = require('some-old-plugin')

const plugin = compat(new Plugin({ ... }))

console.log(plugin.constructor.version) // => 2

// Use LPI2
const { fulfillment, data } = await plugin.sendTransfer({ ... })

Note that it's safe to pass LPI2 plugins to compat, it will simply become a no-op.