Skip to main content

A simple library to store/retrieve information in bitcoin transactions using OP_RETURN.

Project description

A library to read/write data to bitcoin transactions as nulldata outputs.

Installation

pip install btctxstore

CLI usage

Store data in bitcoin blockchain in new transaction with nulldata output. Prints txid of transaction with stored data.

python -m btctxstore store <hexdata> '["pk_in_wif_format", ...]' <change address>

Read data stored in bitcoin blockchain as nulldata output. Prints stored data in hex format.

python -m btctxstore retrieve <txid>

python usage

Store data in bitcoin blockchain in new transaction with nulldata output. Prints txid of transaction with stored data.

import json
from btctxstore import BtcTxStore
api = BtcTxStore()

privatekeys = json.dumps([privatekey_in_wif_format])
txid = api.store(hexdata, privatekeys, changeaddress)
print txid

Read data stored in bitcoin blockchain as nulldata output. Prints stored data in hex format.

from btctxstore import BtcTxStore
api = BtcTxStore()

hexdata = api.retrieve(txid)
print hexdata

json-rpc usage

Starting the rpc server.

python -m btctxstore startserver --hostname=<hostname> --port=<port>

Store data in bitcoin blockchain in new transaction with nulldata output. Prints txid of transaction with stored data.

import pyjsonrpc
rpc = pyjsonrpc.HttpClient(url = "http://localhost:8080")

privatekeys = json.dumps([privatekey_in_wif_format])
txid = rpc.store(hexdata, privatekeys, changeaddress)
print txid

Read data stored in bitcoin blockchain as nulldata output. Prints stored data in hex format.

import pyjsonrpc
rpc = pyjsonrpc.HttpClient(url = "http://localhost:8080")

hexdata = rpc.retrieve(txid)
print hexdata

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

btctxstore-0.1.1.tar.gz (5.9 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page