From a38ce29e530d7991b0b76e2a57ba257a51a952d0 Mon Sep 17 00:00:00 2001
From: Robert Martin-Legene <robert@nic.ar>
Date: Mon, 25 Jun 2018 18:20:34 -0300
Subject: [PATCH] Marked down the old README

---
 README    | 46 ----------------------------------------------
 README.md | 49 ++++++++++++++++++++++++++++++++++++++++++++++++-
 2 files changed, 48 insertions(+), 47 deletions(-)
 delete mode 100644 README

diff --git a/README b/README
deleted file mode 100644
index b63548b..0000000
--- a/README
+++ /dev/null
@@ -1,46 +0,0 @@
-1) Install Ubuntu
-2) add-apt-repository -y ppa:ethereum/ethereum
-3) apt update
-4) apt install ethereum solc jq ncurses-bin
-5) run start.sh
-6) create your contract (there is already one deployed, so *do*not* confuse the two)
-7) insert.sh "I'm doing great today."
-8) wait for next block to be sealed/mined: sleep 15
-9) verify.sh "Hi there"
-10) verify.sh "I'm doing great today."
-11) Try the basic explorer.sh
-12) consider this crontab: @reboot bfa/network5445/start.sh
-
-== network5445/start.sh
-requires: geth
-
-Starts a node on the 5445 BFA test net. Creates a genesis.json if you don't have one already.
-One is already included in this package, which will allow you to connect to the existing BFA testnet.
-
-== create.contract
-requires: geth, solc, jq
-
-Compiles and deploys a contract to the blockchain. A local "node1" must already be running.
-
-Argument 1 is the contract to compile.
-
-Example: ./create.contract src/contract.TimestampDocument.sol
-
-== insert.sh
-requires: geth
-
-Inserts the checksum of a text into the compiled contract.
-
-== verify.sh
-requires: geth
-
-Returns the first blocknumber where the SHA256 checksum of a document was seen (0 for no match).
-
-== explorer.sh
-requires: curl, jq, tput (ncurses-bin)
-
-Simple script to look at blocks
-
-== src/contract.TimestampDocument.sol
-
-The initial Timestamp service. Could be made better.
diff --git a/README.md b/README.md
index 2f92cd0..b435722 100644
--- a/README.md
+++ b/README.md
@@ -1,2 +1,49 @@
 # Blockchain Federal Argentina
-# TEST NETWORK
+## TEST NETWORK
+
+1. Install Ubuntu
+2. add-apt-repository -y ppa:ethereum/ethereum
+3. apt update
+4. apt install ethereum solc jq ncurses-bin
+5. run start.sh
+6. create your contract (there is already one deployed, so *do*not* confuse the two)
+7. insert.sh "I'm doing great today."
+8. wait for next block to be sealed/mined: sleep 15
+9. verify.sh "Hi there"
+10. verify.sh "I'm doing great today."
+11. Try the basic explorer.sh
+12. consider this crontab: @reboot bfa/network5445/start.sh
+
+## network5445/start.sh
+requires: **geth**
+
+Starts a node on the 5445 BFA test net. Creates a genesis.json if you don't have one already.
+One is already included in this package, which will allow you to connect to the existing BFA testnet.
+
+## create.contract
+requires: **geth**, **solc**, **jq**
+
+Compiles and deploys a contract to the blockchain. A local "node1" must already be running.
+
+Argument 1 is the contract to compile.
+
+Example: `./create.contract src/contract.TimestampDocument.sol`
+
+## insert.sh
+requires: **geth**
+
+Inserts the checksum of a text into the compiled contract.
+
+## verify.sh
+requires: **geth**
+
+Returns the first blocknumber where the SHA256 checksum of a document was seen (0 for no match).
+
+## explorer.sh
+requires: **curl**, **jq**, **tput** _(ncurses-bin)_
+
+Simple script to look at blocks
+
+## src/contract.TimestampDocument.sol
+
+The initial Timestamp service. Could be made better.
-- 
GitLab