Live version: https://Itreade.info
Step-by-step install instructions:
- Register on the VPS hosting like this https://m.do.co/c/1ece5d76d5cd
- Create "Droplet" Ubuntu 16 x64 / 1GB / 1vCPU / 25 GB SSD
- Log in to Droplet over SSH (You will receive a email with IP, username and password) 4
sudo apt-get update
sudo apt-get install build-essential libssl-dev curl -y
curl -sL https://raw.githubusercontent.com/creationix/nvm/v0.31.0/install.sh -o install_nvm.sh
bash install_nvm.sh
sudo reboot
nvm install 8.0.0
git clone https://github.com/3s3s/opentrade.git
cd opentrade
sudo npm install
Here is an example of the file ~/itreade/server/modules/private_constants.js Edit with your configs.
'use strict';
exports.recaptcha_priv_key = 'YOUR_GOOGLE_RECAPTCHA_PRIVATE_KEY';
exports.password_private_suffix = 'LONG_RANDOM_STRING1';
exports.SSL_KEY = '../ssl_certificates/privkey.pem'; //change to your ssl certificates private key
exports.SSL_CERT = '../ssl_certificates/fullchain.pem'; //change to your ssl certificates fullchain
exports.walletspassphrase = {
'ISKY' : 'LONG_RANDOM_STRING2',
'BTC' : 'LONG_RANDOM_STRING3',
'DOGE' : 'LONG_RANDOM_STRING4'
};
After, you can run exchange
cd ~/isky/server
sudo node main.js
In your browser address bar, type https://127.0.0.1:40443 You will see ISKY.
The first registered user will be exchange administrator.
For each coin you should create *.conf file This is common example for "some_coin.conf"
rpcuser=long_random_string_one
rpcpassword=long_random_string_two
rpcport=12345
rpcclienttimeout=10
rpcallowip=127.0.0.1
server=1
daemon=1
upnp=0
rpcworkqueue=1000
enableaccounts=1
litemode=1
staking=0
addnode=1.2.3.4
addnode=5.6.7.8
Also, you must encrypt your cryptocurrency wallet with this command.
./bitcoind encryptwallet random_long_string_SAME_AS_IN_FILE_private_constants.js
If coin is not supported by encryption (like ZerroCash and it forks) the coin can not be added to ISKY.
Add you coin details to ISKY
- Register on exchange. The first registered user will be exchange administrator.
- Go to "Admin Area" -> "Coins" -> "Add coin"
- Fill up all fields and click "Confirm"
- Fill "Minimal confirmations count" and "Minimal balance" and uncheck and check "Coin visible" button
- Click "Save"
- Check RPC command for the coin. If it worked then coin was added to the exchange!
All visible coins should be appear in the Wallet. You should create default coin pairs now.
File ~/isky/server/constants.js have settings that you can change
exports.TRADE_MAIN_COIN = "ISKY"; //change Marycoin to your main coin pair
exports.TRADE_DEFAULT_PAIR = "Litecoin"; //change Litecoin to your default coin pair
exports.TRADE_COMISSION = 0.001; //change trade comission percent
exports.recaptcha_pub_key = "6LeX5SQUAAAAAKTieM68Sz4MECO6kJXsSR7_sGP1"; //change to your recaptcha public key
exports.NOREPLY_EMAIL = '[email protected]'; //change no-reply email
exports.SUPPORT_EMAIL = '[email protected]'; //change to your valid email for support requests
exports.my_portSSL = 40443; //change to your ssl port
File ~/isky/static_pages/chart.html
https://github.com/3s3s/opentrade/blob/master/static_pages/chart.html#L23
const PORT_SSL = 40443; //change to your ssl port
const MAIN_COIN = 'Greencoin'; //change Greencoin to your main coin pair same as in constants.js
const DEFAULT_PAIR = 'Litecoin'; //change Litecoin to your default coin pair same as in constants.js
const TRADE_COMISSION = 0.001;
After that, you coins should appear on the main page.