DEVELOPMENT MOVED TO: https://github.com/crypto-org-chain/chain-main
Table of Contents
- Description
- Contributing
- License
- Documentation
- Build
- Start a Local Full Node
- Send your First Transaction
- Testing
- Useful Links
1. Description
This repository contains the Thaler Experimental Network code (pre-pivoted Crypto.com Chain). The current repository consists of the following Rust sub-crates:
- chain-abci: the Tendermint ABCI application that currently does the transaction validation etc.
- chain-core: the library that contains the main type definitions and any utility code (such as serialization), so that it can be used in chain-abci and other applications.
- chain-storage: storage related logic used by chain-abci.
- chain-tx-filtering: Library that captures the fuctionality related to block-level public view key-based transaction filtering.
- chain-tx-validation: Library with functions that verify, given current chain state's data, if a transaction is valid.
- test-common: Common code shared by unit tests.
- dev-utils: currently a minimal development tool for generating genesis.json
- client-[common|network|core|cli|rpc]: Client backend implementation for transaction creation and wallet management. Follow these links for more details:
- chain-tx-enclave/: enclaves and enclave wrapper apps.
- enclave-protocol: Requests and responses exchanges over ZMQ between chain-abci app.
- cro-clib: c API library.
2. Contributing
Please abide by the Code of Conduct in all interactions, and the contributing guidelines when submitting code.
3. License
4. Documentation
Technical documentation can be found in this Github repository (you can read it in this hosted version.
5. Build full node
1. Docker image
$ docker build -t crypto-chain:latest .
Docker build arguments:
SGX_MODE
:HW
: SGX hardware mode, default.SW
: SGX software simulation mode.
NETWORK_ID
: Network HEX Id of Tendermint, default:AB
.BUILD_PROFILE
:debug
: debug mode.release
: release mode, default.
BUILD_MODE
:sgx
: default.mock
: A simulation mode only for development on non-sgx platform, don't use in production.
2. Makefile
$ make build
It builds in docker container, the result binaries reside in local directory, it runs something like:
$ docker run --rm -v `pwd`:/chain cryptocom/chain:latest run_build_scripts
The result binary is built for the docker container environment, may not runnable locally.
The makefile supports other commands too:
$ make help
...
SUBCOMMAND:
prepare prepare the environment
image build the docker image
build just build the chain and enclave binaery in docker
run-sgx docker run sgx-validation and a sgx-query container
run-chain docker run chain-abci, tendermint and client-rpc container
stop-all docker stop all the container
start-all docker start all the container
restart-all docker restart all the container
rm-all remove all the docker container
clean clean all the temporary files while compiling
clean-data remove all the data in data_path
3. Linux native (Ubuntu 18.04)
Prerequisite:
- intel sgx sdk (Set environment variable
SGX_SDK
to the sdk directory) - rust toolchain nightly-2019-11-25 (you can install with rustup)
$ apt-get install -y \
cmake \
libgflags-dev \
libzmq3-dev \
pkg-config \
clang
$ ./docker/build.sh
All the executables and signed enclave libraries will reside in ./target/debug
.
Environment variables mentioned in the docker image building section also apply here.
4. Develop with mock mode on non-sgx platform (e.g. mac)
TODO
6. Start a Local Full Node
Please follow the instruction to deploy a local full node.
7. Send Your First Transaction
Kindly refer to this instruction to perform transactions between addresses.
8. Testing
You can run the unit tests and integration tests with drone-cli on sgx platform:
$ cat > .drone.secret << EOF
SPID=<SPID>
IAS_API_KEY=<IAS_API_KEY>
EOF
$ drone exec --trusted \
--include build \
--include unit-tests \
--include integration-tests \
--include multinode-tests
Kindly refer to Prepare SPID & KEY to obtain the values of SPID
and IAS_API_KEY
.
9. Useful links
- Project Website
- Technical Documentation
- Community chatrooms (non-technical): Discord Telegram
- Developer community chatroom (technical):