Skip to content

Commit f876ea7

Browse files
committed
Add chia-start-wallet-server and update docs
1 parent 7662eb8 commit f876ea7

File tree

4 files changed

+9
-4
lines changed

4 files changed

+9
-4
lines changed

INSTALL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ You will need to download the Windows native Wallet and unzip into somewhere con
6868

6969
[main.js-win32-x64.zip](https://hosted.chia.net/beta-1.0-win64-wallet/main.js-win32-x64.zip)
7070

71-
Instead of `chia-start-wallet-ui &` as explained in the [README.md](README.md) you run `chia-websocket-server &` in Ubuntu/WSL 2 to allow the Wallet to connect to the Full Node running in Ubuntu/WSL 2. Once you've enabled `chia-websocket-server` you can run `chia.exe` from the unzipped `chia-win32-x64` directory.
71+
Instead of `chia-start-wallet-ui &` as explained in the [README.md](README.md) you run `chia-start-wallet-server &` in Ubuntu/WSL 2 to allow the Wallet to connect to the Full Node running in Ubuntu/WSL 2. Once you've enabled `chia-start-wallet-server &` you can run `chia.exe` from the unzipped `chia-win32-x64` directory.
7272

7373
### Amazon Linux 2
7474

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ chia-start-wallet-gui &
3434
If you're using Windows/WSL 2, you should instead run:
3535
```bash
3636
chia-start-node &
37-
chia-websocket-server &
37+
chia-start-wallet-server &
3838
```
3939
And then run `chia.exe` from the unzipped `chia-win32-x64` directory in Windows (not Ubuntu/WSL 2.)
4040

@@ -55,7 +55,7 @@ If you're using Windows/WSL 2, you should instead run:
5555
```bash
5656
chia-create-plots -k 20 -n 10
5757
chia-start-farmer &
58-
chia-websocket-server &
58+
chia-start-wallet-server &
5959
```
6060
And then run `chia.exe` from the unzipped `chia-win32-x64` directory in Windows (not Ubuntu/WSL 2.)
6161

@@ -78,7 +78,7 @@ When running the servers on Mac OS, allow the application to accept incoming con
7878

7979
Ubuntu 18.04 LTS, 19.xx, Amazon Linux 2, and CentOS 7.7 or newer are the easiest linux install environments currently.
8080

81-
Windows users (and others) can [download VirtualBox](https://www.virtualbox.org/wiki/Downloads) and install [Ubuntu Desktop 19.10](https://ubuntu.com/download/desktop) in a virtual machine. This will allow you to run all of the chia tools and use the Wallet GUI. There are lots of good howtos on the web including [this one on installing Ubuntu 19.10 Desktop](https://techsviewer.com/how-to-install-ubuntu-19-10-on-virtualbox/).
81+
Windows users (and others) can [download Virtualbox](https://www.virtualbox.org/wiki/Downloads) and install [Ubuntu Desktop 19.10](https://ubuntu.com/download/desktop) in a virtual machine. This will allow you to run all of the chia tools and use the Wallet GUI. There are lots of good howtos on the web including [this one on installing Ubuntu 19.10 Desktop](https://techsviewer.com/how-to-install-ubuntu-19-10-on-virtualbox/).
8282

8383
UPnP is enabled by default, to open port 8444 for incoming connections. If this causes issues,
8484
you can disable it in the configuration. Some routers may require port forwarding, or enabling

scripts/chia-start-wallet-server

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Starts a websocket for GUI Wallet
2+
python -m src.wallet.websocket_server
3+
4+
wait

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,7 @@
7171
"scripts/chia-start-sim",
7272
"scripts/chia-start-timelord",
7373
"scripts/chia-start-wallet-gui",
74+
"scripts/chia-start-wallet-server",
7475
"scripts/chia-stop-all",
7576
],
7677
entry_points={

0 commit comments

Comments
 (0)