You are on page 1of 3

WHAT TO DO ON LOCAL

1. 1. Open the PapelCoin Desktop Wallet.


2. 2. Go to RECEIVE and create a New Address: MN1
3. 3. Send 10000 PAPELS to MN1.
4. 4. Wait for 15 confirmations.
5. 5. Go to Help -> "Debug Window - Console"
6. 6. Type the following command: masternode outputs
7. 7. Type the following command: masternode genkey

Your Parameters:

$VPSIP: It’s your DigitalOcean VPS IP


$PRIVKEY: Value From Step 7
$TXID: First Value From Step 6
$OUT: Second Value From Step 6

On windows go to the %appdata% -> PapelCore then edit


papel.conf and masternode.conf files.
On mac use command + shift + g shorcut on finder. Go to the
~/Library/Application Support/papelcore and edit papel.conf
and masternode.conf files.

papel.conf

rpcuser=rpcuser
rpcpassword=rpcpass
rpcallowip=127.0.0.1
listen=1
server=1
daemon=1
maxconnections=24
masternode=1
masternodeprivkey= Value From Step7
externalip=$VPSIP:21999

masternode.conf
mn1 $VPSIP:21999 $PRIVKEY $TXID $OUT

Restart your desktop wallet after these process.

WHAT TO DO ON VPS
We recommend DigitalOcean for VPS. You can create a droplet
with 1 GB. That costs monthly $5.

You should connect your VPS with SSH. (PuTTy on Windows,


Terminal on OSX)

After you connect with SSH, you should do the following step by
step.

1. 1. sudo apt-get update


2. 2. sudo apt-get install build-essential libtool autotools-dev
automake pkg-config libssl-dev libevent-dev bsdmainutils
3. 3. sudo apt-get install libboost-all-dev
4. 4. sudo add-apt-repository ppa:bitcoin/bitcoin
5. 5. sudo apt-get update
6. 6. sudo apt-get install libdb4.8-dev libdb4.8++-dev
7. 7. sudo apt-get install unzip
8. 8. wget
https://github.com/papelcoin/papelcoin/releases/download/
v0.12.2.4/Papel.Core.Linux.zip
9. 9. unzip Papel.Core.Linux.zip
10. 10. ~/.papelcore
11. 11. touch papel.conf
12. 12. nano papel.conf

Paste and save the below with your parameters ($VPSID and
$PRIVKEY)

rpcuser=rpcuser
rpcpassword=rpcpass
rpcallowip=127.0.0.1
rpcport=22000
listen=1
server=1
daemon=0
port=21999
logtimestamps=1
maxconnections=256
masternode=1
masternodeaddr=$VPSIP:21999
masternodeprivkey=$PRIVKEY

Save the file and start papeld.

cd ~/

./papeld

You might also like