2015-11-25 13:27:07 +00:00
|
|
|
What's included?
|
|
|
|
================
|
|
|
|
|
2016-06-30 09:52:31 +00:00
|
|
|
The Corda prototype currently includes:
|
|
|
|
|
|
|
|
* A peer to peer network with message persistence and delivery retries.
|
|
|
|
* Key data structures for defining contracts and states.
|
2016-08-24 13:38:43 +00:00
|
|
|
* Smart contracts, which you can find in the :doc:`contract-catalogue`.
|
2015-11-25 13:27:07 +00:00
|
|
|
* Algorithms that work with them, such as serialising, hashing, signing, and verification of the signatures.
|
2016-06-30 09:52:31 +00:00
|
|
|
* API documentation and tutorials (what you're reading).
|
|
|
|
* A business process orchestration framework.
|
|
|
|
* Notary infrastructure for precise timestamping, and elimination of double spending without a blockchain.
|
2016-08-24 13:38:43 +00:00
|
|
|
* A simple REST API, and a web app demo that uses it to present a frontend for IRS trading.
|
2015-11-25 13:27:07 +00:00
|
|
|
|
|
|
|
Some things it does not currently include but should gain later are:
|
|
|
|
|
2015-11-25 15:31:59 +00:00
|
|
|
* Sandboxing, distribution or publication of smart contract code
|
2015-11-25 13:27:07 +00:00
|
|
|
* A user interface for administration
|
|
|
|
|
|
|
|
The prototype's goal is rapid exploration of ideas. Therefore in places it takes shortcuts that a production system
|
|
|
|
would not in order to boost productivity:
|
|
|
|
|
2016-03-11 12:42:11 +00:00
|
|
|
* It uses an object graph serialization framework instead of a well specified, vendor neutral protocol.
|
2016-08-24 13:38:43 +00:00
|
|
|
* There's currently no permissioning framework.
|
|
|
|
* Some privacy techniques aren't implemented yet.
|
|
|
|
* It uses an embedded SQL database and doesn't yet have connectivity support for mainstream SQL vendors (Oracle,
|
|
|
|
Postgres, MySQL, SQL Server etc).
|