Corda

Installing Corda Blockchain.

https://www.corda.net/

JAVA

sudo add-apt-repository ppa:webupd8team/java
sudo apt update
sudo apt install oracle-java8-set-default

Install IntelliJ

https://stackoverflow.com/questions/30130934/how-to-install-intellij-idea-on-ubuntu

CORDA

git clone https://github.com/corda/corda.git
cd corda
./gradlew tools:demobench:installDist
Task :samples:bank-of-corda-demo:jar

BUILD SUCCESSFUL in 5m 36s

Cordapp Configuration Sample

https://github.com/corda/corda/tree/master/samples/cordapp-configuration

Demobemch

cd tools/demobench/build/install/demobench

Start DEMOBENCH

bin/demobench

DEMOBENCH DATA

src/main/kotlin/net/corda/demobench/model/NodeData.kt

val banks = listOf(
// Mike: Rome? Why Rome?
// Roger: Notaries public (also called "notaries", "notarial officers", or "public notaries") hold an office
// which can trace its origins back to the ancient Roman Republic, when they were called scribae ("scribes"),
// tabelliones forenses, or personae publicae.[4]
// Mike: Can't argue with that. It's even got a citation.
"Notary" to "Rome",
"Bank of Breakfast Tea" to "Liverpool",
"Bank of Big Apples" to "New York",
"Bank of Baguettes" to "Paris",
"Bank of Fondue" to "Geneve",
"Bank of Maple Syrup" to "Toronto",
"Bank of Golden Gates" to "San Francisco"
)