Skip to content

Convert a Ledger Plugin Interface (LPI) version 1 plugin to LPIv2

Notifications You must be signed in to change notification settings

interledger-deprecated/ilp-compat-plugin

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

25 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.

About

Convert a Ledger Plugin Interface (LPI) version 1 plugin to LPIv2

Resources

Stars

Watchers

Forks

Packages