Go to file
Greg Fitzgerald 929546f60b
Update README.md
2018-03-05 16:18:46 -07:00
doc Update readme 2018-03-05 16:05:16 -07:00
src Initialize the testnode from a log 2018-03-05 15:34:44 -07:00
.codecov.yml Add codecov configuration 2018-02-19 13:02:59 -07:00
.gitignore cargo init 2018-02-14 07:23:59 -07:00
.travis.yml Use sha256 hashes instead of Rust's builtin hasher. 2018-02-19 16:23:53 -07:00
Cargo.toml Add a demo app to generate the genesis file 2018-03-04 01:21:40 -07:00
LICENSE Prep for ownership transfer and rename 2018-02-16 11:53:14 -07:00
README.md Update README.md 2018-03-05 16:18:46 -07:00

README.md

Silk crate Silk documentation Build Status codecov

Disclaimer

All claims, content, designs, algorithms, estimates, roadmaps, specifications, and performance measurements described in this project are done with the author's best effort. It is up to the reader to check and validate their accuracy and truthfulness. Furthermore nothing in this project constitutes a solicitation for investment.

Silk, a silky smooth implementation of the Loom specification

Loom™ is a new achitecture for a high performance blockchain. Its whitepaper boasts a theoretical throughput of 710k transactions per second on a 1 gbps network. The specification is implemented in two git repositories. Reserach is performed in the loom repository. That work drives the Loom specification forward. This repository, on the other hand, aims to implement the specification as-is. We care a great deal about quality, clarity and short learning curve. We avoid the use of unsafe Rust and write tests for everything. Optimizations are only added when corresponding benchmarks are also added that demonstrate real performance boosts. We expect the feature set here will always be a ways behind the loom repo, but that this is an implementation you can take to the bank, literally.

Running the demo

First, build the demo executables in release mode (optimized for performance):

    $ cargo build --release
    $ cd target/release

The testnode server is initialized with a transaction log from stdin and generates a log on stdout. To create the input log, we'll need to create a genesis configuration file and then generate a log from it. It's done in two steps here because the demo-genesis.json file contains a private key that will be used later in this demo.

    $ ./silk-genesis-file-demo > demo-genesis.jsoc
    $ cat demo-genesis.json | ./silk-genesis-block > demo-genesis.log

Now you can start the server:

    $ cat demo-genesis.log | ./silk-testnode > demo-entries0.log

Then, in a seperate shell, let's execute some transactions. Note we pass in the JSON configuration file here, not the genesis log.

    $ cat demo-genesis.json | ./silk-client-demo

Now kill the server with Ctrl-C and take a look at the transaction log. You should see something similar to:

{"num_hashes":27,"id":[0, "..."],"event":"Tick"}
{"num_hashes:"3","id":[67, "..."],"event":{"Transaction":{"data":[37, ...]}}}
{"num_hashes":27,"id":[0, "..."],"event":"Tick"}

Now restart the server from where we left off. Pass it both the genesis log and the transaction log.

    $ cat demo-genesis.log demo-entries0.log | ./silk-testnode > demo-entries1.log

Lastly, run the client demo again and verify that all funds were spent in the previous round and so no additional transactions are added.

    $ cat demo-genesis.json | ./silk-client-demo

Stop the server again and verify there are only Tick entries and no Transaction entries.

Developing

Building

Install rustc, cargo and rustfmt:

$ curl https://sh.rustup.rs -sSf | sh
$ source $HOME/.cargo/env
$ rustup component add rustfmt-preview

Download the source code:

$ git clone https://github.com/loomprotocol/silk.git
$ cd silk

Testing

Run the test suite:

cargo test

Benchmarking

First install the nightly build of rustc. cargo bench requires unstable features:

$ rustup install nightly

Run the benchmarks:

$ cargo +nightly bench --features="asm,unstable"