Simple cookie jar example of a Sawtooth application.
This is a minimal example of a Sawtooth 1.1 application, with a transaction processor and corresponding client. This example demonstrates a simple use case, where a baker bakes or eats cookies saved in a virtual cookie jar.
A baker can:
- bake one or more cookies to add to the cookie jar
- eat one or more cookies in the cookie jar
- count the cookies in the cookie jar
All cookie jar transactions have the same 6 hex digit prefix, which is the first 6 hex characters of the SHA-512 hash of "cookiejar" (that is, "a4d219").
The cookie jar is identified by mycookiejar
with a corresponding public/private keypair.
The cookie jar count is stored at an 70 hex digit address derived from:
- a 6-hex character prefix (the "cookiejar" Transaction Family namespace) and
- the first 64 hex characters of the SHA-512 hash of the "mycookiejar" public key in hex.
I have a video presentation on YouTube that uses this application as an example. It is "Hyperledger Sawtooth Application Developer Overview using 'CookieJar'". It is at https://www.youtube.com/watch?v=VFXary3rwY0
The cookie jar transaction family contains two parts, both written in Python 3:
- The client application has two parts:
pyclient/cookiejar_client.py
contains the client class which interfaces to the Sawtooth validator via the REST APIpyclient/cookiejar.py
is the Cookie Jar CLI app The client container is built with files setup.py and Dockerfile.
- The Transaction Processor,
pyprocessor/cookiejar_tp.py
This example uses docker-compose and Docker containers. If you do not have these installed please follow the instructions here: https://docs.docker.com/install/
NOTE
The preferred OS environment is Ubuntu Linux 16.04.3 LTS x64. Although other Linux distributions which support Docker should work.
To build TP code for Python and run the cookiejar.py example:
sudo docker-compose up --build
The docker-compose.yaml
file creates a genesis block, which contain initial Sawtooth settings, generates Sawtooth and client keys, and starts the Validator, Settings TP, Cookie Jar TP, and REST API.
In a separate shell from above, launch the client shell container:
sudo docker exec -it cookiejar-client bash
You can locate the correct Docker client container name, if desired, with
sudo docker ps
.
In the client shell you just started above, run the cookiejar.py application. Here are some sample commands:
cookiejar.py bake 100 # Add 100 cookies to the cookie jar
cookiejar.py eat 50 # Remove 50 cookies from the cookie jar
cookiejar.py count # Display the number of cookies in the cookie jar
To stop the validator and destroy the containers, type ^c
in the docker-compose window, wait for it to stop, then type
sudo docker-compose down
For C++ TP instructions, see cxxprocessor/.
To run sawtooth-simplewallet without dockers, we'll have to use a Ubuntu 16.04 OS installation and compile simplewallet from sources. Below is a sample procedure for Python TP/client:
- Install Sawtooth on an Ubuntu 16.04 LTS x64 machine. See the Sawtooth Applications Developer's Guide
- Create the Genesis Block. See Guide in previous step
- Install transaction processor and client-required packages:
- listed under the
RUN
line in filepyprocessor/Dockerfile
- listed under the
RUN
line in filepyclient/Dockerfile
- Clone the cookie jar application:
git clone https://github.com/danintel/sawtooth-cookiejar
- Edit the client and transaction processor to work outside of Docker as follows:
cd sawtooth-cookiejar
- Create and checkout a new git branch:
git branch nodocker; git checkout nodocker
- Edit file
pyprocessor/cookiejar_tp.py
and changevalidator:4004
tolocalhost:4004
- Edit file
pyclient/cookiejar.py
changerest-api:8008
tolocalhost:8008
- Start the Validator, REST API, and Settings TP in separate terminal windows:
sudo -u sawtooth sawtooth-validator -vv
sudo -u sawtooth sawtooth-rest-api -vvv
sudo -u sawtooth settings-tp -vv
- Start the cookie jar transaction processor with
./pyprocessor/cookiejar_tp.py
- Start the cookiejar client with
./pyclient/cookiejar.py
and follow the "sample commands" above
A simple events handler is included. To run, start the validator then
type the following on the command line:
./events/events_client.py
- Add a new function,
empty
which empties the cookie jar (sets the count to 0) in the client and processor - Add the ability to specify the cookie jar owner key (client only). Use Simplewallet as an example
- Replace simple CSV serialization with CBOR serialization in the client and processor.
Use the Sawtooth
"inkey"
example application as a pattern.
If you get stuck, see the CBOR implementation in the
cbor
branch of this repository - Replace simple CSV serialization with Protobuf serialization in the client and processor.
Use the Sawtooth
"XO"
example application as a pattern
If you get stuck, see the Protobuf implementation in the
protobuf
branch of this repository - Translate the Python transaction processor into another programming language. See Simplewallet and Sawtooth SDK examples
- Also translate the Python client into another programming language. Note that the client and transaction processor do not need to be written in the same language
master
is the main branch. It uses comma-separated variable (CSV) serializationcbor
uses Concise Binary Object Representation (CBOR) serializationprotobuf
uses Protocol Buffer (Protobuf) serialization
Both the cbor
and protobuf
branches modify files
pyclient/{Dockerfile,cookiejar_client.py}
and
pyprocessor/{Dockerfile,cookiejar_tp.py}
.
The protobuf
branch also adds files
proto/{build.sh,cookiejar.proto,cookiejar.proto2}
.
Run build.sh
in directory proto
to create cookiejar_pb2.py
.
This software is Apache 2.0 licensed and accepts contributions via
GitHub pull requests.
Each commit must include a Signed-off-by:
in the commit message (git commit -s
). This sign-off means you agree the commit satisfies the Developer Certificate of Origin (DCO).
This example software is derived from the Sawtooth Simplewallet application. Simplewallet supports more programming languages and handles transactions with multiple keys.
This example and Hyperledger Sawtooth software are licensed under the Apache License Version 2.0 software license.
Antique sawtooth cookie cutters.
© Copyright 2018, Intel Corporation.