System Protocol: Proof-of-Work and Proof-of-Stake
Hash Algorithm: X11
Currency symbols: YIC
Market Cap: 75 millions
Block Time: 60 seconds
Masternode Collateral: 15000 YIC
Masternode Rewards: 80% from PoS
Updating Ubuntu system
sudo apt-get update
sudo apt-get upgrade
sudo apt-get dist-upgrade
Installing new packages
sudo apt-get install -y build-essential libssl-dev libboost-all-dev git libdb5.3++-dev libminiupnpc-dev screen
Creating folder on root structure and give permission
sudo mkdir /wallets
sudo chmod 777 /wallets
Downloading source code
git clone https://github.com/yicoindev/yicoin.git yicoin
cd yicoin
Changing permission and compiling LevelDB
cd ./src/leveldb
chmod +x build_detect_platform
make libleveldb.a libmemenv.a
cd ../..
Changing permission and compiling SECP256K1
cd ./src/secp256k1
chmod +x autogen.sh
./autogen.sh
./configure
make
cd ../..
Compiling daemon
cd ./src
make -f makefile.unix
or
make -f makefile.unix "USE_UPNP=-" # without support to UPNP