Please secure your wallets by protecting them with strong passwords. Also, backup your wallets frequently and keep several copies in different places to minimize the chance of loss

NOTE: Version of wallet in images maybe outdate please check on https://github.com/SmartCash/Core-Smart/releases/ for the latest version


I. For Windows Computers


1. Go to this link to download the wallet https://github.com/SmartCash/Core-Smart/releases/


2. Run the *-setup.exe file with admin right


3. Once wallet had been installed, you can find it in 



Once wallet is been launched, It will start synchronizing with SmartCash network and depending on your processor's speed and internet connection's speed, it may take a while.

P/s: You can speedup sync process with bootstrap file ( guide here )


II. For Mac Computers


1. Go to the https://github.com/SmartCash/Core-Smart/releases/


2. Click to download smartcash-qt for MacOs

3. Open the downloaded file and Drag and drop the smartcash-qt icon into the Applications folder.

4. Go to Applications and right click on SmartCash, then click Open.

5. Your Mac will then ask your permission to open Smartcash - click to Open

6. Your wallet will then open and start to sync, this may take some time! If it gets stuck, close wallet and open again.


Tips: You can use bootstrap file to speed up sync process

https://smartcash.freshdesk.com/support/solutions/articles/35000027174


III. For Linux Computers


+ For Ubuntu


The wallet can be installed by run this in terminal ( console )


sudo apt-add-repository multiverse (required for Ubuntu 18.04 if not enabled already)

 

sudo add-apt-repository ppa:smartcash/ppa -y && apt update && apt install smartcashd -y && smartcashd


Your installation is now complete! You can now find the SmartCash Wallet in the 'Internet' section of your Desktop Menu or start the qt client by using the 'smartcash-qt' command in your terminal!


For Ubuntu command line: sudo add-apt-repository ppa:smartcash/ppa -y && sudo apt update && sudo apt install smartcashd -y && smartcashd

For Ubuntu graphical version: sudo add-apt-repository ppa:smartcash/ppa -y && sudo apt update && sudo apt install smartcash-qt -y && smartcash-qt



+ For raspberry pi (Compile from source )


First we need to download and install the newest updates

sudo apt-get update && sudo apt-get upgrade


Screen Shot 12-24-17 at 01.48 PM.PNG


Next install the following major dependencies packages by: (don’t forget to click Y)

sudo apt-get install git build-essential libtool autotools-dev autoconf pkg-config libssl-dev libcrypto++-dev libevent-dev libminiupnpc-dev libgmp-dev libboost-all-dev devscripts libdb++-dev libsodium-dev


Screen Shot 12-24-17 at 01.49 PM.PNG

next install the following QT dependencies packages by: (don’t forget to click Y)
sudo apt-get install libqt5gui5 libqt5core5a libqt5dbus5 qttools5-dev qttools5-dev-tools libprotobuf-dev protobuf-compiler libcrypto++-dev libminiupnpc-dev qt5-default

The next thing we need to install are the bitcoin PPA files, these files are necessary for the compiling process.

cd /etc/apt/sources.list.d/

sudo nano bitcoin.list


Screen Shot 12-24-17 at 01.52 PM (2).PNG


Now paste to following line:

deb-src http://ppa.launchpad.net/bitcoin/bitcoin/ubuntu artful main

Press ctrl X and Y and enter the following commands:

sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv C70EF1F0305A1ADB9986DBD8D46F45428842CE5E

sudo apt-get update


Screen Shot 12-24-17 at 01.54 PM (2).PNG

We’re almost ready to start the compiling process. We only need to change the libssl version to an older version. We can do this by the following commands:

cd && sudo apt-get remove libssl-dev

Set your repository list to point to "jessie " instead of "stretch", and save and exit this by ctrl x and clicking y:

sudo nano /etc/apt/sources.list



Screen Shot 12-24-17 at 01.55 PM 001 (2).PNG

Screen Shot 12-24-17 at 01.56 PM.PNG


If you changed it to Jessie update again and install libssl-dev again.

sudo apt-get update 
sudo apt-get install libssl-dev

Now let’ get started. First we will make a folder for the Unify wallet by:

mkdir smartcash

If the folder is made we move into that folder by the following command:

cd smartcash


Now we need to clone the SmartCash source


git clone https://github.com/SmartCash/Core-Smart.git


If the cloning is done you will see there is a new folder. You can see this folder by running the ls command:

ls

Now let’s move into the source folder as root by typing:


sudo -i 

cd /home/pi/smartcash/Core-Smart/



This is one of the latest steps. We are going to compile the wallet right now. This can take a while! don’t worry just grab a beer and wait. We can start the compiling by the following command:

sudo qmake && sudo make


If it’s al done you we be back in the ~/smartcash/Core-Smart  folder. We can now run the wallet just by typing: 


./smartcash-qt

To make life easier we can make a shortcut on our Desktop. We do this by typing:


cp Core-Smart /home/pi/Desktop


Congrats! You got a wallet running on your raspberryPI!!



+ For raspberry pi (Download pre build binary file )


Just download and extract file from in github


wget https://github.com/SmartCash/Core-Smart/releases/download/v1.2.8/smartcash-1.2.8-arm-RPi.tar.gz


tar -xzvf smartcash-1.2.8-arm-RPi.tar.gz


run the wallet by


./smartcash-qt


Or you can try pip 


install needed dependencies: ((Install of Python, a Programming Language and PIP, a package manager for Python packages))


sudo apt-get install python3-setuptools python3-pyqt5 python3-pip


Use the Python installer (pip) to download and install SmartCash Wallet:


sudo pip3 install https://github.com/SmartCash/Core-Smart/releases/download/v1.2.8/smartcash-1.2.8-arm-RPi.tar.gz


Launch the desktop:

startx


To launch SmartCash Wallet  you can either open a terminal and run:


smartcash-qt


+ For Other Linux base


 Find the latest wallet versions here https://github.com/SmartCash/Core-Smart/releases/


Open Terminal windows

cd
wget https://github.com/SmartCash/Core-Smart/releases/download/v1.2.8/smartcash-1.2.8-x86_64-linux-gnu.tar.gz


tar -xzvf smartcash-1.2.8-x86_64-linux-gnu.tar.gz


cd smartcash-1.2.8/bin

./smartcashd