*NOTE: The current Alpha of Rocket Pool requires the latest ganache-cli@v6.0.3 and truffle@4 to run locally.
Rocket Pool is a next generation decentralised Ethereum proof of stake (POS) pool currently in Alpha and built to be compatible with Casper. Features include Casper compatibility, smart nodes, decentralised infrastructure with automatic smart contract load balancing.
Unlike traditional centralsed POW pools, Rocket Pool utilises the power of smart contracts to create a self regulating decentralised network of smart nodes that allows users with any amount of Ether to earn interest on their deposit and help secure the Ethereum network at the same time.
The contracts are written in solidity and built with the Ethereum framework truffle. This project is currently in Alpha and undergoing heavy work.
Easiest way to see Rocket Pool alpha in action is to clone the repo, have Ganache running and the latest version of truffle installed. A quick and easy way to do this is to use the test script provided with the project:
$ npm install && npm testThis will start Ganache (if not already started) with the current block gas limit and put Rocket Pool through its paces.
You can read the current Rocket Pool white paper here: http://www.rocketpool.net/files/RocketPoolWhitePaper.pdf.
For more information on Rocket Pool, check out our website here. You can also contact us there for more information.
The following worked example uses Mac OSX 10.12.6 and VMware Fusion 8.5.8 - all versions correct as of 15/09/2017
download and install Ubuntu onto a new VM -> https://www.ubuntu.com/download/desktop - tested with v16.04
open a Terminal window and install some pre-requisites:
install git:
$ sudo apt -y install gitinstall curl:
$ sudo apt -y install curlinstall npm:
$ sudo apt -y install npminstall node.js:
$ curl -sL https://deb.nodesource.com/setup_6.x | sudo -E bash -
$ sudo apt-get -y install nodejsget rocketpool:
$ git clone https://github.com/darcius/rocketpoolopen the rocketpool directory:
$ cd rocketpoolinstall npm packages and run tests:
$ npm install && npm test
