Skip to content

Latest commit

 

History

History
23 lines (13 loc) · 463 Bytes

README.md

File metadata and controls

23 lines (13 loc) · 463 Bytes

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.