Mantis is the name given to the new Ethereum Classic client produced by the Grothendieck Team.
Continuous Integration Build Status
Unit Test Code Coverage Status
This version of the code supports
- fast sync (download a recent state trie snapshot and all blocks, this is the default behaviour)
- bootstrap sync (download a database for mantis preloaded with a recent version of the block chain, highly recommended for testing)
- regular sync (download and execute every transaction in every block in the chain, this can be very slow and error prone - not recommended)
- JSON RPC API (useful for console and Mist integration)
- Morden testnet and private network
ethminer
miner integration (allows mantis to mine blocks with ethminer)
This version has been tested on Windows 10, Linux and MacOS
For more details on configuration and functionality check out our wiki (also at wiki)
The latest release can be downloaded from here
The bootstrap database files can be downloaded from here
- JDK 1.8 (download from java.com)
- sbt (download sbt)
As an alternative to downloading the client build the client from source.
Checkout this repository from github and then type
sbt dist
in the root of the project.
This creates a distribution zip.
- JVM 1.8 (download from java.com)
Note that on windows a 64 bit version of the JVM is required. This can be checked by using java -version
. Check for 64-Bit
java version "1.8.0_131"
Java(TM) SE Runtime Environment (build 1.8.0_131-b11)
Java HotSpot(TM) 64-Bit Server VM (build 25.131-b11, mixed mode)
- the download of the Ethereum Classic chain will take up around 15G of disk space
Note that a slow disk will slow the chain download, an SSD with 25G free space is recommended
Unzip that file to create a folder structure starting with
mantis-0.3-cli-beta
In a terminal from the root of the installation run
./bin/mantis
The client runs in the foreground, it is recommended to use a session manager like tmux
to prevent the client exiting when the terminal is shut down.
Within a minute the chain begins downloading to a folder in the $HOME
folder called .mantis
Open a command terminal and from the root of the installation run
bin\mantis.bat
Within a minute the chain begins downloading to a folder in the %HOME%
folder called .mantis
Using the 'out of the box' settings the client attempts to contact the remote peers configured in the configuration file and begin a
fast-sync
download. Time taken to complete fast-sync
varies significantly depending on the quality of the network connection and the quality of the hardware.
A faster option for creating a node that is synced with the network is to use the bootstrap download.
All options can be configured in the files located in the conf
folder.
For example to change the default datadir to /mydata
edit the storage.conf
file and find the lines
# Base directory where all the data used by the node is stored, including blockchain data and private keys
# datadir = ${user.home}"/.mantis"
Uncomment and edit datadir
to read
# Base directory where all the data used by the node is stored, including blockchain data and private keys
datadir = "/mydata"
For more details on configuration and functionality check out our wiki (also at wiki)
To remove the mantis client simple delete the folder the distribution (zip) file was unzipped to and delete the datadir
. The default datadir folder is $HOME/.mantis
Feedback gratefully received through the Ethereum Classic Slack (#mantis_client_bugs)
There is a list of known issues in the 'RELEASE' file located in the root of the installation.