Skip to content
yayboss edited this page May 26, 2018 · 1 revision

BUILDING YAYCOIN WALLET FROM SOURCE ON UBUNTU 16.04 64 Bit

NECESSARY DEPENDENCIES

  • sudo apt-get update
  • sudo apt-get install build-essential libtool autotools-dev autoconf pkg-config libssl-dev git
  • sudo apt-get install libboost-all-dev
  • sudo apt-get install software-properties-common
  • sudo add-apt-repository ppa:bitcoin/bitcoin
  • sudo apt-get update
  • sudo apt-get install libdb4.8-dev libdb4.8++-dev
  • sudo apt-get install libminiupnpc-dev

QT 4 for GUI Wallet

  • sudo apt-get update
  • sudo apt-get install libqt4-dev libprotobuf-dev protobuf-compiler

QT 5 for GUI Wallet

  • sudo apt-get install libqrencode-dev
  • sudo apt-get install libqt5gui5 libqt5core5a libqt5dbus5 qttools5-dev qttools5-dev-tools libprotobuf-dev protobuf-compiler

CLONING AND BUILDING

  • sudo git clone https://github.com/yayboss/yaycoin.git
  • cd yaycoin/src
  • sudo chmod -R 777 *
  • sudo ./autogen.sh
  • sudo ./configure
  • sudo make

YAYCOIN START AND STOP

  • ./yaycoind --daemon
  • ./yaycoin-cli stop

YAYCOIN OTHER COMMANDS

  • ./yaycoin-cli getinfo
  • ./yaycoin-cli listtransactions
  • ./yaycoin-cli listreceivedbyaddress 0 true
  • ./yaycoin-cli sendtoaddress "changethistoyouraddress" 1000
  • ./yaycoin-cli getblockhash 18820
  • ./yaycoin-cli importprivkey YourPrivateKey "changetoanylabel"
Clone this wiki locally