Smartpool is live on Ropsten testnet. This repository consists of the client software. The smart contract repository is here.
The client is currently tested only on Mac OS and Ubuntu.
Golang compiler version 1.7 or higher.
Ethereum Parity client version 1.5.9 or higher.
Ethereum Geth client needs to be compiled from source.
We support CPU and GPU mining with ethminer version 1.2.9 or higher.
To run smartpool you must have a Ropsten testnet account with least 0.5 Ether. You can get testnet Ethers from metamask faucets or ping us on our gitter channel.
Note: To get Ether from metamask faucet, you need to install metamask browser add-on.
git clone https://github.com/SmartPool/smartpool-client.git
cd smartpool-client
./compile.sh
Note: If you are on MacOS, there is a issue with Go and XCode 8.3 that might make you see killed ./smartpool
error. To fix this issue, please run build/env.sh go build -o smartpool -ldflags -s cmd/ropsten/ropsten.go
instead of ./compile.sh.
geth --testnet --fast --rpc --rpcapi "db,eth,net,web3,miner"
or Parity: parity --chain ropsten --jsonrpc-apis "web3,eth,net,parity,traces,rpc,parity_set"
./smartpool --keystore keystore_path --miner account
.
Where
keystore_path
is a path to a directory that contains your account key. E.g., $HOME/.local/share/io.parity.ethereum/keys/kovan/
.account
is the address of your account. E.g., 0x2ba80fe2811f8e0ea5eabf8e07697f7e9f5ae56c
../smartpool --keystore ~/Library/Ethereum/testnet/keystore --miner 0xe034afdcc2ba0441ff215ee9ba0da3e86450108d
.ethminer -F localhost:1633
or ethminer -G -F localhost:1633
if you mine with your GPU.Smartpool is also live on Kovan testnet.
Ethereum Parity client version 1.5.9 or higher.
To run smartpool you must have a testnet Kovan account with least 0.5 Ether. You can get testnet Ethers from faucets.
git clone https://github.com/SmartPool/smartpool-client.git
cd smartpool-client
./kovan_compile.sh
parity --chain kovan --jsonrpc-apis "web3,eth,net,parity,traces,rpc,parity_set"
./kovan --keystore keystore_path --miner account --spcontract 0x0398ae5a974FE8179B6B0ab9baF4d5f366E932Bf
.
Where
keystore_path
is a path to a directory that contains your account key. E.g., $HOME/.local/share/io.parity.ethereum/keys/kovan/
.account
is the address of your account. E.g., 0x2ba80fe2811f8e0ea5eabf8e07697f7e9f5ae56c
ethminer -F localhost:1633
or ethminer -G -F localhost:1633
if you mine with your GPU.Contact us at gitter for support.