Skip to content

Instantly share code, notes, and snippets.

View michielbdejong's full-sized avatar

Michiel de Jong michielbdejong

View GitHub Profile

I thought the following Dutch services for user-to-user payment requests were all quite interesting developments, once you have thought about how we design Interledger Payment Requests and the W3C Payment Request API:

  • There's a new service for sending payment requests in the Netherlands: https://tikkie.me/ It's super simple, you get a link to a payment URL that uses the Dutch iDEAL system, to which all Dutch banks are connected. iDEAL has existed for years and people use it a lot to pay things online; usually the options would be creditcard, paypal, iDEAL. iDEAL is just a redirector service: Pick your bank, and it redirects you to your own online banking. The tikkie link can be pasted in WhatsApp or other chat/email channels. It's really taken off and I heard people mention it quite a lot, quite suddenly.
0xfa5b9836c46b6559be750b2f3c12657081fab858
0xC3CBBF339554F26E591764AF8807F16242FE06A4
0x7c309c49463c309fd1536a92c70003ad836f4a90
0x596144741AC842bF4C5f976D01e5Ca0e8b552963
0x2b080240e93a58504cda75339a5129c532cfff19
0x6ac8e92b25b6ed1691a8688394df637eeb8271ed
const crypto = require('crypto')
const Packet = require('ilp-packet')
const uuid = require('uuid/v4')
const Plugin = require('ilp-plugin-bells')
const sender = new Plugin({ account: 'https://red.ilpdemo.org/ledger/accounts/alice', password: 'alice' })
const receiver = new Plugin({ account: 'https://blue.ilpdemo.org/ledger/accounts/bob', password: 'bobbob' })
Promise.all([sender.connect(), receiver.connect()]).then(() => {
const secret = crypto.randomBytes(32)
@michielbdejong
michielbdejong / testnet-of-testnets.md
Last active August 3, 2017 17:39
testnet-of-testnets

PluginBackend

The backend parameter is an object of the abstract type PluginBackend:

interface PluginBackend {
  getTransferLog(options): TransferLog
}

interface TransferLogOptions {