Entropycoin Info
Specifications
- Scrypt-N Algorithm
- 2 minute blocks
- 96 coins per block
- 150 million total coins
- Kimoto Gravity Well / DigiShield Fix
- Block payout halved every three years - Minimum payout 1 coin/block
* Bonus For Early Adopters
- Day 1 - Double Block Rewards
- Day 2 - Double Block Rewards
- Day 3 - Triple Block Rewards
Ports
RPCPort: 7558
Connecion Port: 7559
Entropycoin Configuration
Sample entropycoin.conf file for local mining:
rpcuser=yourusername
rpcpassword=yourpassword
rpcallowip=192.168.1.*
rpcport=7558
server=1
gen=0
addnode=50.63.190.86
Sample vertminer parameters for local mining
Entropycoin now requires a scrypt-n compatible miner.
You can download vertminer 0.5.3 from here: vertminer download page
Important. Change the vertminer.conf file for vertminer or it will use its own pools!!
Sample vertminer parameters for local mining
vertminer.exe --scrypt-vert -o http://localhost:7558 -u username -p password --expiry 1 --scan-time 4 --queue 0
Source Code
Github Source Code
Compiling Instructions Below
Pools
http://enc.0feepool.com/
https://www.minep.it/pool/enc
Because Pool
http://enc.hashlink.eu/
http://entropy.vert-coin.pl/
http://nomp.1js.us
Exchanges
MintPal
Bittrex
Poloniex
Comkort
C-CEX
SwapHole
Block Explorer
http://chainz.cryptoid.info/enc/#
Mining Profitability / Calculators
CoinWarz.com
CoinTweak.com
http://whatmine.com/
http://www.whattomine.com/
Coin Ranking / Market Cap
coinmarketcap.com
cryptocoinrank.com
www.worldcoinindex.com
Faucets
http://www.cryptoarrow.com/faucets/entropycoin/index.php
Network Stats (JSON)
http://entropycoins.com/stats/networkstats?param=getinfo
Compiling Instructions
Windows
1. Get Source Code
git clone https://github.com/etcdev/EntropyCoins.git
2. Compile LevelDB
/Entropycoins/src/leveldb
From an msys command line type the following command:
TARGET_OS=NATIVE_WINDOWS make libleveldb.a libmemenv.a
3. Compile Server
/Entropycoins/src
From an msys command line type:
mingw32-make -f makefile.mingw
4. Compile QT client
/Entropycoins
qmake entropycoin-qt.pro
mingw32-make -f Makefile.Release
Debian
Compile on Debian
1. Get Source Code
git clone https://github.com/etcdev/EntropyCoins.git
2. Compile LevelDB
in /Entropycoins/src/leveldb folder run
make libleveldb.a libmemenv.a
3.Compile Daemon
in /Entropycoins/src folder run
make -f makefile.unix
strip entropycoind
4. Make QT pro file and Compile
in /Entropycoins folder run
qmake entropycoin-qt.pro
make