Add payments without being tied to a single currency or payment provider.
Send payments to other ledgers, even if they are multiple hops away.
Inspired by TCP/IP, Interledger is easy to implement and use.
Interledger makes it easy to send money, no matter what ledger you or the recipient are on.
import WalletClient from 'five-bells-wallet-client'
const client = new WalletClient({
username: [email protected]',
password: 'secret'
})
setInterval(() => {
client.send({
destination: [email protected]',
destinationAmount: '0.01',
message: 'Still love you!'
})
}, 1500)
Interledger takes care of getting your money from ledger A to ledger Z, so you can get back to building awesome things! If you’re interested, learn more about how the magic works.
Interledger allows you to receive money from any ledger, without setting up accounts on lots of different services.
import WalletClient from 'five-bells-wallet-client'
const client = new WalletClient({
username: [email protected]',
password: 'secret'
})
client.on('incoming', (payment) => {
console.log('Received ' + payment.destinationAmount + ' bucks!')
console.log(payment.sourceAccount + ' says: ' + payment.message)
})