Corda is an open source blockchain project, designed for business from the start. Only Corda allows you to build interoperable blockchain networks that transact in strict privacy. Corda's smart contract technology allows businesses to transact directly, with value.
Go to file
2016-02-10 16:28:22 +01:00
.idea/runConfigurations Use buyer/seller instead of alpha/beta and allow nodes to both be named localhost. Update docs. 2016-02-05 15:48:58 +01:00
docs Regen docsite 2016-02-05 15:54:38 +01:00
gradle/wrapper Minor: bump Gradle to 2.10 2016-01-22 12:54:24 +01:00
lib Check in an "All tests" config and add quasar jar to lib directory to simplify IntelliJ configuration 2016-01-12 16:40:34 +01:00
src Fix build. 2016-02-10 16:28:22 +01:00
.gitignore Implement the beginnings of a serving node. 2016-02-03 16:57:01 +01:00
build.gradle Kotlin 1.0 RC 2016-02-08 19:35:30 +01:00
gradlew Initial import 2015-11-03 17:54:17 +01:00
gradlew.bat Initial import 2015-11-03 17:54:17 +01:00
README.md Updated README.md with "Cheat-Sheet" pre-requisite details 2015-12-15 13:22:35 +01:00
settings.gradle Rename 'playground' to 'R3 Prototyping' 2015-11-30 17:00:25 +00:00

Introduction

This source repository contains explorations of various design concepts the R3 DLG is exploring.

Things you need to know:

  • The main code documentation is in the form of a website in the git repository. Load the website in the docs/build/html directory to start reading about what's included, how to get set up, and to read a tutorial on writing smart contracts in this framework.

  • The architecture documentation is on the Architecture Working Group Wiki site - please refer to that for an explanation of some of the background concepts that the prototype is exploring.

  • The code is a JVM project written mostly in Kotlin, which you can think of as a simpler version of Scala (or alternatively, a much better syntax for Java). Kotlin can be learned quickly and is designed to be readable, so you won't need to know it very well to understand what the code is doing. If you'd like to add new features, please read its documentation on the website.

    There is also Java code included, to demonstrate how to use the framework from a more familiar language.

  • For bug tracking we use JIRA. For source control we use this BitBucket repository. You should have received credentials for these services as part of getting set up. If you don't have access, please contact Richard Brown or James Carlyle.

  • There will be a mailing list for discussion, brainstorming etc called r3dlg-awg.

Instructions for installing prerequisite software

JDK for Java 8

Install the Oracle JDK 8u45 or higher. It is possible that OpenJDK will also work but we have not tested with this.

Using IntelliJ

It's a good idea to use a modern IDE. We use IntelliJ. Install IntelliJ version 15 community edition (which is free):

https://www.jetbrains.com/idea/download/

Upgrade the Kotlin plugin to the latest version (1.0-beta-2423) by clicking "Configure > Plugins" in the opening screen, then clicking "Install JetBrains plugin", then searching for Kotlin, then hitting "Upgrade" and then "Restart".

Choose "Check out from version control" and use this git URL

https://your_username@bitbucket.org/R3-CEV/r3prototyping.git

Agree to the defaults for importing a Gradle project. Wait for it to download the dependencies.

Right click on the tests directory, click "Run -> All Tests" (note: NOT the first item in the submenu that has the gradle logo next to it).

The code should build, the unit tests should show as all green.

You can catch up with the latest code by selecting "VCS -> Update Project" in the menu.

IntelliJ Troubleshooting

If on attempting to open the project, IntelliJ refuses because SDK was not selected, do the following:

Configure -> Project Defaults -> Project Structure

on that tab:

Project Settings / Project

click on New… next to the red symbol, and select JDK. It should then pop up and show the latest JDK it has found at something like

jdk1.8.0_xx…/Contents/Home

Also select Project language level: as 8. Click OK. Open should now work.

Accessing Source Without an IDE

If you don't want to explore or modify the code in a local IDE, you can also just use the command line and a text editor:

git clone https://your_username@bitbucket.org/R3-CEV/r3prototyping.git

You will need to have your Bitbucket account set up already from R3. Then:

cd r3prototyping

Run the following to run the unit tests:

./gradlew test

For the first time only, this will download and configure Gradle. Run "git pull" to upgrade

Starting point - the Tutorial

We have prepared a comprehensive tutorial. One you have access to the source, open the following in a browser:

r3prototyping/docs/build/html/index.html

Screenshot