Warning: this is highly experimental
It assumes you're already running BTCPay Server somehwere.
Create a user and group:
sudo adduser patron --disabled-password| sudo tar -xzvf /home/gitian/bitcoin-binaries/0.18.0/bitcoin-0.18.0-x86_64-linux-gnu.tar.gz -C /usr/local --strip 1 |
Warning: this is highly experimental
It assumes you're already running BTCPay Server somehwere.
Create a user and group:
sudo adduser patron --disabled-password| testnet=1 | |
| [main] | |
| [test] | |
| server=1 | |
| rpcpassword=bitcoin | |
| rpcuser=bitcoin |
footer: 2018-03-24 - Code Block London - [email protected] - @provoost on Twitter slidenumbers: true autoscale: false
| #!/bin/sh | |
| SIGNED_BINARIES=0 | |
| while getopts ":n:v:s" opt; do | |
| case $opt in | |
| n) | |
| NAME=$OPTARG | |
| ;; | |
| v) | |
| VERSION=$OPTARG |
Create payment request using their demo site. Obtain URL from QR code, e.g. on OSX using QR Journal.
| node_modules | |
| resolutions := 58 76 80 120 152 | |
| all_FILES := $(foreach resolution, $(resolutions), icon-$(resolution).png) | |
| all: $(all_FILES) | |
| icon-%.png: icon-itunes-connect-1024.png | |
| convert $< -resize $*x$* $@ | |
| icon-itunes-connect-1024.png: icon.svg |
| #!/usr/bin/env ruby | |
| require 'open-uri' | |
| require 'JSON' | |
| require 'digest/sha2' | |
| require 'pry' | |
| require 'bigdecimal' | |
| require 'bitcoin' # Because I need to cheat every now and then | |
| # Usage: | |
| # gem install pry json ffi ruby-bitcoin |