sudo apt-get install build-essential git curl bison libtool autotools-dev automake pkg-config bsdmainutils python3
sudo apt-get install libevent-dev libboost-dev libboost-system-dev libboost-filesystem-dev libboost-test-dev
git clone https://github.com/barrystyle/chips
cd chips/depends
make HOST=x86_64-linux-gnu -j$(nproc)
cd ..
./autogen.sh
CONFIG_SITE=$PWD/depends/x86_64-linux-gnu/share/config.site ./configure
make -j$(nproc)
mkdir -p ~/.chips
./chipsd -testnet -txindex=1 -server=1 -daemon=1 -addnode=46.255.254.247 -addnode=51.222.150.53 &
You can give any name to your wallet instead of
test
~/chips/src/chips-cli -testnet createwallet "test"
~/chips/src/chips-cli -testnet loadwallet "test"
~/.chips/testnet3
You need to load or create wallet before you can mine. See above steps on how to create or load one.
#!/bin/bash
date
while true; do
sleep 10
~/chips/src/chips-cli -testnet -generate 1 100000000
done
exec bash