Skip to content

Instantly share code, notes, and snippets.

View justmoon's full-sized avatar

Stefan Thomas justmoon

View GitHub Profile
@justmoon
justmoon / _INSTALL.md
Last active November 10, 2016 23:07
Installing ILP Kit on Ubuntu 16.04

This is a log of me installing five-bells-wallet.

General Configuration

sudo hostname nexus.justmoon.com
sudo apt update
sudo apt dist-upgrade
sudo apt install build-essential libssl-dev python libpq-dev git-core
@justmoon
justmoon / proposal.md
Last active December 9, 2016 02:22
Ledger WebSocket API Proposal

Overview

The five-bells-ledger WebSocket API provides a way for real-time access to the ledger.

Endpoint

The URL for the websocket endpoint is available by GETting the ledger's main URI (metadata endpoint) and inspecting the urls.websocket property. Example:

Request
@justmoon
justmoon / NOTES.md
Last active August 24, 2016 12:20
Notes on ILP binary format

Introduction

Here is a quick doc to explain our current thinking about the binary format.

Syntax descriptions are ASN.1 (X.680), all encodings are representations according to Octet Encoding Rules (OER; X.696).

First, let's define some basic types.

GenericTypes

@justmoon
justmoon / example.md
Last active July 12, 2016 23:53
Comparing ILP Receiver Event API Options

With receive:

client.on('receive', (transfer) => {
  // Check amount, etc.
  if (transfer.condition) {
    // Try to fulfill the condition or throw if unable
  }
  // Process the payment
})
@justmoon
justmoon / conditions-as-curried-functions.md
Last active December 4, 2016 08:39
Conditions as Curried Functions

Crypto-condition types can be viewed as curried functions. Let's take a ed25519 signature condition as an example:

ed25519(pubkey)(signature)(message)
  1. Initially, we start out with the condition type (ed25519). When we apply a first set of parameters (pubkey), it returns a condition.

  2. A condition is another function which expects some kind of proof (signature) and returns a fulfillment.

@justmoon
justmoon / ilp-core-api.md
Created June 3, 2016 01:27
API for ILP core
import { Client } from 'ilp-core'
const client = new Client({
  auth: {
    account: 'https://far-far-away-ledger.example/accounts/bob',
    password: 'super-secret-password',
  }
})

const payment = client.createPayment({
@justmoon
justmoon / github-dark.css
Created May 22, 2016 14:53
Github Dark stylesheet without -moz-document wrapper.
/*! Github Dark Theme v1.14.75 (5/21/2016) *//*
* https://github.com/StylishThemes/GitHub-Dark
* http://userstyles.org/styles/37035
* License: https://creativecommons.org/licenses/by-sa/4.0/
*/
/* AGENT_SHEET */
body {
background-color: #222 !important;
background-image: /*[[bg-choice]]*/ url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEYAAABGBAMAAACDAP+3AAAAGFBMVEUfHx8eHh4dHR0bGxshISEiIiIlJSUjIyM9IpsJAAAFjUlEQVR4AT3UuZLcOBaF4QuI2XJxboIhF/eQFe1WovoBAAqccpkaZpc5+4yrXa8/RGpx/lrIXPjFCYjTp9z8REqF4VYNWB3Av3zQJ6b6xBwlKB/9kRkCjXVwGH3ziK5UcjFHVkmgY6osiBsGDFfseqq2ZbTz7E00qBDpzOxnD7ToABeros1vM6MX0rBQaG1ith1A/HJkvkHxsPGJ82dP8vVCyWmbyPTaAfGzg40bgIdrv2f3pBVPycUcufx+BSUUWDuCZi6zBqdM50ElKYPODqtLDjc31rBb9CZ59lbN/JScuMxHLUBcGiy6QRH9zpwgZGhRj8qSydPVgNNVgbWqYX3HbM9K2rqTnKVmsmwKWzc1ffEd20+Zq3Ji65kl6TSjALNvzmJt4Pi2f1etytGJmy5erLAgbNY4bjykC3YCLIS3nSZMKgwRsBarWgjdeVzIEDzpTkoOUArTF4WFXYHwxY585sT0nmTYMxmXfs8fzwswfnam8TMU49bvqSRnyRPnqlno4tVQQiH2A9Za8tNTfXQ0lxbSxUaZna0uLlj9Q0XzD96CpsOZUftolINKBWJpAOoAJC0T6QqZnOtfvcfJFcDrD4C
@justmoon
justmoon / convert.js
Created May 21, 2016 17:55
Quick and dirty tool to convert RSA-PSS test cases using OpenSSL
// Used to create test vectors for five-bells-condition
// https://github.com/interledger/five-bells-condition
'use strict'
const fs = require('fs')
const execSync = require('child_process').execSync
const Rsa = require('./src/crypto/rsa')
const pem = require('./src/util/pem')
const sha1Data = require('./test/data/rsa/sha1.json')
@justmoon
justmoon / 01a_sender.js
Last active May 23, 2016 17:09
SPP Example
// P2P payment
import { Client } from 'spp'
const client = new Client({
account: 'https://red.ilpdemo.org/accounts/alice',
auth: {
password: 'secret'
}
})
@justmoon
justmoon / devday-www2016.md
Created April 11, 2016 15:25
WWW2016 Developer Day • Interledger