Skip to content

Instantly share code, notes, and snippets.

View matthieu's full-sized avatar

Matthieu Riou matthieu

View GitHub Profile
@matthieu
matthieu / encrypt_send_a_candy
Last active August 29, 2015 14:16
Encrypt a JSON file before POSTing to BlockCypher
$ openssl enc -aes-256-cbc -base64 -in send_a_candy.json -out send_a_candy.json.aes256
@matthieu
matthieu / new_address_curl
Last active August 29, 2015 14:16
Get a new address and keys from BlockCypher
$ curl -X POST https://api.blockcypher.com/v1/btc/main/addrs
{
"private": "da01587298ff1721a968539e87329abe18f9b20cb46124eb650671662d3acd1a",
"public": "02d47eaaca7f9b96a977c996396d1668a729155c02a18a37429ca5be9cfda91893",
"address": "1PjfjXBM4GQs8FaNFESiUZzQwVxMHXdBXG",
"wif": "L4XV4V5ACQmrtJn7ombma3sdqNrn1T9FFfwjLUaHVmd7Qz5iNHTt"
}
@matthieu
matthieu / send_a_candy.json
Created March 11, 2015 00:24
Partial JSON to POST to BlockCypher for a candy-size microtransaction
{
"from_private": "da01587298ff1721a968539e87329abe18f9b20cb46124eb650671662d3acd1a",
"value_satoshis": 2000000,
"token": "37048cd01f250eca918ab55b658de3ec"
}