ethereum-oasis / baseline
- воскресенье, 22 марта 2020 г. в 00:21:10
JavaScript
The Baseline Protocol is an open source initiative that combines advances in cryptography, messaging, and blockchain to execute secure and private business processes at low cost via the public Ethereum Mainnet. The protocol will enable confidential and complex collaboration between enterprises without leaving any sensitive data on-chain
Combining advances in cryptography, messaging, and blockchain to execute
secure and private business processes via the public Ethereum Mainnet.
Join our Slack workspace for Baseline news and updates!
Baseline is an open source initiative with a large and growing team of supporting companies. The first code was donated by Ernst & Young and ConsenSys, with support from Microsoft, and is now receiving contributions from many other companies. The purpose of the project is to bring enterprises and complex business processes to the Ethereum Mainnet, while guarding the privacy constraints and needs of a typical group of enterprises.
The Baseline Protocol defines a series of steps to follow to privately and securely synchronize data inside two independent databases, using the Ethereum Mainnet as an auditable common frame of reference. This protocol implements best practices around data consistency and compartmentalization, and leverages public Ethereum for verifying execution of private transactions, contracts and tokens on the mainnet using ZKP (zkSnarks). The Baseline Protocol is designed such that it can be extended and applied to any database/workflow.
In order to demonstrate the Baseline Protocol, we needed a use-case. The use-case chosen was product procurement within a supply-chain, and the custom application built for this workflow is called Radish34. This application was built as a proof of concept for the Baseline Protocol.
The Baseline Protocol code is currently embedded inside the /radish-api directory, but we are in the process of moving that code into the /baseline directory to clearly distinguish the protocol from the use-case. Once this move is complete, radish-api will import baseline as a module, which will be the same process that other projects will need to follow to implement Baseline.
A Makefile has been included for convenience; most of its targets wrap npm, docker and solc invocations.
Just want to get the Baseline Protocol running locally?
make && make start && make test will build the monorepo, start the Baseline Protocol stack locally, deploy contracts and run the full test suite. Note: this typically takes between [] and [] minutes to complete.
Here are the targets currently exposed by the Makefile:
| Target | Description |
|---|---|
make |
Alias for make build. |
make build |
Build and dockerize all modules within the monorepo; perform initial zk circuit setups. |
make clean |
Reclaim disk used by all modules (i.e. node_modules/) and the local docker environment. This effectively uninstalls your local Baseline environment and will require building from scratch. |
make contracts |
Compile the Solidity contracts. |
make deploy-contracts |
Deploy the Solidity contracts. Requires the stack to be running. |
make npm-install |
npm ci wrapper for all modules in the monorepo. |
make start |
Start the full Baseline stack. Requires docker service to be running with at least 12 GB RAM allocation. |
make stop |
Stop the running Baseline stack. |
make test |
Run the full test suite. Requires the stack to be running. |
make zk-circuits |
Perform zk-SNARK trusted setups for circuits contained within zkp/circuits |
To run the Radish34 application, follow the instructions in radish34/README.md.
cd radish34 and go from there
The root directory of this repo (where this Readme currently lives) contains the following folders:
.
├── baseline <-- Future home to the Baseline Protocol libraries
├── bin <-- Scripts to run across the entire project
├── docs <-- auto-generated and artisanal hand crafted documentation
└── radish34 <-- The demonstration POC (you probably are looking for this)
To use the top level scripts (currently just documentation auto-generation and collection) do the following:
Required: NodeJS 11.15 (nvm is recommended)
npm install to install the top level packagesnpm run bootstrap to install all the packages in all the project components (using lerna)optionally npm run clean to clean out any node_modules folders installed by the bootstrap command.
See our contributing guidelines
All code in this repo is released under the CC0 1.0 Universal public domain dedication. For the full license text, refer to license.md.