Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
happycoinmaster committed Oct 19, 2018
1 parent c80dc97 commit 305d704
Show file tree
Hide file tree
Showing 2 changed files with 57 additions and 2 deletions.
58 changes: 56 additions & 2 deletions README.md
@@ -1,2 +1,56 @@
RPC Port: 12847
Network Port: 12846
# Happycoin

##### Completed file
If you don't need to build yourself it can be download from [here](https://github.com/happycoinmaster/Happycoin/tree/master/Completed_filedebian_ubuntu)

##### How to run

You can start or stop node with command
```bash
:~$ ./HappyCoind -daemon
```
```bash
:~$ ./HappyCoind stop
```

or path/to/file

```bash
:~$ Happycoin/src/HappyCoind -daemon
```


##### API calls list
* Command-line options [here](https://github.com/happycoinmaster/Happycoin/blob/master/doc/Command-line%20options.md)
* RPC console [here](https://github.com/happycoinmaster/Happycoin/blob/master/doc/RPC%20console.md)




### How to build from source
* **Install dependencies : Ubuntu & Debian**
```bash
:~$ sudo apt-get install build-essential
:~$ sudo apt-get install libssl-dev

:~$ sudo add-apt-repository ppa:bitcoin/bitcoin
:~$ sudo apt-get update
:~$ sudo apt-get install libdb4.8-dev
:~$ sudo apt-get install libdb4.8++-dev

:~$ sudo apt-get install libboost-all-dev
:~$ sudo apt-get install libqrencode-dev
```

* **Download source from Github**
```bash
:~$ sudo apt-get install git
:~$ cd
:~$ git clone https://github.com/happycoinmaster/Happycoin.git
```
* **To build**
```bash
:~$ cd Happycoin/src
:~$ make -f makefile.unix
```
You will see `HappyCoind` contained inside `src` directory
1 change: 1 addition & 0 deletions port.md
@@ -0,0 +1 @@
RPC Port: 12847 Network Port: 12846

0 comments on commit 305d704

Please sign in to comment.