Difference between revisions of "User:Saul/Insane"

From Organic Design wiki
m (Finished the first section of install.)
(Added info on VPS setup section.)
Line 20: Line 20:
  
 
=== VPS Setup ===
 
=== VPS Setup ===
 +
Connect to the VPS via SSH and run:
 +
<source lang="bash">
 +
sudo apt-get install libboost1.58 libdb5.3++ # install dependencies
 +
wget -O INSaNed-1.0.5.2-Membrane-07 https://office.organicdesign.nz/s/boD8a6Jw2DXjzA5/download # downloads the pre-compiled binary for Ubuntu 16.04
 +
chmod +x INSaNed-1.0.5.2-Membrane-07 # allow it to execute
 +
sudo ./INSaNed-1.0.5.2-Membrane-07 # run it once to load files
 +
nano /home/saul/.INSN/INSaNe.conf # configure the masternode
 +
# Change the rpcuser to a username
 +
</source>
 
=== Useful Links ===
 
=== Useful Links ===
 
*[https://insanecoin.com/ Insane Website]
 
*[https://insanecoin.com/ Insane Website]
 
*[https://insanecoin.com/index.php/insanely-easy-insn-masternode-vps-guide/ Insanely Easy Insn Masternode VPS Guide]
 
*[https://insanecoin.com/index.php/insanely-easy-insn-masternode-vps-guide/ Insanely Easy Insn Masternode VPS Guide]
 
*[https://office.organicdesign.nz/s/boD8a6Jw2DXjzA5 Precompiled Binary Of Insane 1.0.5.1 For Ubuntu 16.04]
 
*[https://office.organicdesign.nz/s/boD8a6Jw2DXjzA5 Precompiled Binary Of Insane 1.0.5.1 For Ubuntu 16.04]

Revision as of 01:33, 16 March 2018

Insane is a crypto-currency that is a Proof Of Stake/Proof Of Work hybrid with masternodes.
The masternode requires a collateral of 50k INSN.

Setup A Masternode

Wallet Setup

You will need to have an up to date wallet with at least 50000.0002 INSN per masternode in it.
You will need to create a new dedicated address for each masternode - label each address mn01, mn02, etc.
Then you will need to enter the debug console (Help->Debug Window->Console) and run the following commands for each masternode:

getaccountaddress mn01
masternode genkey

Copy the outputs somewhere for further reference.
Next you will need to transfer exactly 50k INSN to each of the addresses (each transaction will have a fee of 0.0002 INSN).
You will have to wait for at least 1 confirmation before starting the next step.
Then you will need to enter the debug console again (Help->Debug Window->Console) and run the following command:

masternode outputs

Copy the output to your reference.

VPS Setup

Connect to the VPS via SSH and run:

sudo apt-get install libboost1.58 libdb5.3++ # install dependencies
wget -O INSaNed-1.0.5.2-Membrane-07 https://office.organicdesign.nz/s/boD8a6Jw2DXjzA5/download # downloads the pre-compiled binary for Ubuntu 16.04
chmod +x INSaNed-1.0.5.2-Membrane-07 # allow it to execute
sudo ./INSaNed-1.0.5.2-Membrane-07 # run it once to load files
nano /home/saul/.INSN/INSaNe.conf # configure the masternode
	# Change the rpcuser to a username

Useful Links