/uchain_

A tiny implementation of a blockchain, for educational purposes.

Primary LanguagePythonMIT LicenseMIT

μ-chain

A tiny implementation of a blockchain, for educational purposes. Inspired by snakecoin.

Usage

Create a transaction.

curl "localhost:5000/txion" \
     -H "Content-Type: application/json" \
     -d '{"from": "foo", "to":"bar", "amount": 3}'

Mine a new block.

curl localhost:5000/mine