This repository was archived by the owner on Dec 12, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathSatoshi Hot & Cold Wallet Guide
204 lines (147 loc) · 5.78 KB
/
Satoshi Hot & Cold Wallet Guide
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204

# Satoshi Masternode Setup Guide (Ubuntu 16.04)
This guide will assist you in setting up a Satoshi Masternode on a Linux Server running Ubuntu 16.04. (Use at your own risk)
If you require further assistance contact the support team @ [Discord](https://discord.gg/wrQ6qqV)
***
## Requirements
1) **2501 Satoshi coins.**
2) **A Vultr VPS running Linux Ubuntu 16.04.**
3) **A Satoshi local wallet.**
4) **An SSH client such as [Putty](https://the.earth.li/~sgtatham/putty/latest/w32/putty-0.70-installer.msi)**
***
## Contents
* **Section A**: Creating the VPS within [Vultr](https://www.vultr.com/?ref=7384543).
* **Section B**: Downloading and installing Putty.
* **Section C**: Connecting to the VPS and installing the Masternode script via Putty.
* **Section D**: Preparing the local wallet
* **Section E**: Connecting & Starting the masternode.
***
## Section A: Creating the VPS within [Vultr](https://www.vultr.com/?ref=7384543)
***Step 1***
* Register at [Vultr](https://www.vultr.com/?ref=7384543)
***
***Step 2***
* After you have added funds to your account go [here](https://my.vultr.com/deploy/) to create your Server
***
***Step 3***
* Choose a server location (preferably somewhere close to you)

***
***Step 4***
* Choose a server type: Ubuntu 16.04

***
***Step 5***
* Choose a server size: $5/mo will be fine

***
***Step 6***
* Set a Server Hostname & Label (name it whatever you want)

***
***Step 7***
* Click "Deploy now"

***
## Section B: Downloading and installing Putty.
***Step 1***
* Download Putty [here](https://the.earth.li/~sgtatham/putty/latest/w32/putty-0.70-installer.msi)
***
***Step 2***
* Select the correct installer depending upon your operating system. Then follow the install instructions.

***
## Section C: Connecting to the VPS & Installing the MN script via Putty.
***Step 1***
* Copy your VPS IP (you can find this by going to the server tab within Vultr and clicking on your server.

***
***Step 2***
* Open the putty application and fill in the "Hostname" box with the IP of your VPS then click "Open"

***
***Step 3***
* Once you have clicked open it will open a security alert (click yes).
***
***Step 4***
* Type "root" as the login/username then press enter

***
***Step 5***
* Copy the root password from the VULTR server page.

***
***Step 6***
* Paste the password into the Putty terminal by right clicking (it will not show the password so just press enter)

***
***Step 7***
* Paste the code below into the Putty terminal then press enter (it will just go to a new line)
`wget -q https://raw.githubusercontent.com/SatoshiCoin-Crypto/satoshicoin/master/satoshi.sh`
***
***Step 8***
* Paste the code below into the putty terminal then press enter
`bash satoshi.sh`

***
***Step 9***
* Sit back and wait for the install (this will take 10-20 minutes)
***
***Step 10***
* When prompted to enter your private key - press enter

***
***Step 11***
* You will now see all of the relevant information for your server.
* Keep this terminal open as we will need the info for the wallet setup.

***
## Section D: Preparing the Local wallet
***Step 1***
* Download and install the Satoshi wallet [here](https://github.com/SatoshiCoin-Crypto/satoshicoin/releases)
***
***Step 2***
* Create a new address 
* Send EXACLY 2500 to the created address within your wallet.
***
***Step 3***
* Create a text document to temporarily store information that you will need.
***
***step 4***
* Go to the console within the wallet

***
***Step 5***
* Type the command below and press enter
`masternode outputs`

***
***Step 6***
* Copy the long key (this is your transaction ID) and the 0 or 1 at the end (this is your output index)
* Paste these into the text document you created earlier as you will need them in the next step.
***
# Section E: Connecting & Starting the masternode
***Step 1***
* Go to the masternodes tab within the wallet and click "create"

***
***Step 2***
* Fill out the create form.
* For `Alias` type something like "MN01" **don't use spaces**
* The `Address` is the IP and port of your server (this will be in the putty terminal that you still have open).
* The `PrivKey` is your masternode private key (This is also in the putty terminal that you have open).
* The `TxHash` is the transaction ID/long key that you copied to the text file.
* The `Output Index` is the 0 or 1 that you copied to your text file.
* Leave the reward address and reward % blank.=
Click "OK"
***
***Step 3***
* Wait until your transaction has 16 confirmations then
* Click start all in the masternodes tab
***
***step 4***
* Check the status of your masternode within the VPS by using the command below:
`systemctl status Satoshi.service`
*You should see ***Active: active (running) since..***
If you do, congratulations! You have now setup a masternode. If you do not, please contact support on Discord and they will assist you.
***