From adc60f3ca0033c4f6314cb47fa2c455875985dae Mon Sep 17 00:00:00 2001 From: Rob Walker Date: Fri, 13 Jul 2018 16:22:02 -0700 Subject: [PATCH] add drone information to multinode demo instructions --- README.md | 21 ++++++++++++++++++--- 1 file changed, 18 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 4d2bd2afd3725b..c5dc01b15d194c 100644 --- a/README.md +++ b/README.md @@ -47,7 +47,7 @@ $ source $HOME/.cargo/env Now checkout the code from github: ```bash -$ git clone https://github.com/solana-labs/solana.git +$ git clone https://github.com/solana-labs/solana.git $ cd solana ``` @@ -84,7 +84,7 @@ Now start the server: $ ./multinode-demo/leader.sh ``` -To run a performance-enhanced fullnode on Linux, +To run a performance-enhanced leader, [CUDA 9.2](https://developer.nvidia.com/cuda-downloads) must be installed on your system: ```bash @@ -95,6 +95,20 @@ $ SOLANA_CUDA=1 ./multinode-demo/leader.sh Wait a few seconds for the server to initialize. It will print "Ready." when it's ready to receive transactions. +Drone +--- + +In order for the below test client to work, we'll also need to spin up a drone +to give out some test tokens. The drone delivers Milton Friedman-style "air +drops" (free tokens to requesting clients) to be used in test transactions. + +Start the drone on the leader node with: + +```bash +$ ./multinode-demo/drone.sh +``` + + Multinode Testnet --- @@ -104,7 +118,7 @@ To run a multinode testnet, after starting a leader node, spin up some validator $ ./multinode-demo/validator.sh ubuntu@10.0.1.51:~/solana 10.0.1.51 ``` -To run a performance-enhanced fullnode on Linux, +To run a performance-enhanced validator, [CUDA 9.2](https://developer.nvidia.com/cuda-downloads) must be installed on your system: ```bash @@ -113,6 +127,7 @@ $ SOLANA_CUDA=1 ./multinode-demo/leader.sh ubuntu@10.0.1.51:~/solana 10.0.1.51 ``` + Testnet Client Demo ---