Skip to content

Commit

Permalink
New wallet
Browse files Browse the repository at this point in the history
  • Loading branch information
phantomxdev committed Feb 22, 2018
1 parent 13915f4 commit e5776ad
Show file tree
Hide file tree
Showing 140 changed files with 116,765 additions and 700 deletions.
83 changes: 71 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,23 +1,82 @@
# phantomx-cryptocurrency
phantomx cryptocurrency, a blockchain based digital money

# PhantomX - PNX

PhantomX is a secure project aims to integrate cryptocurrencies in a real environment.


### Why invest in PhaNtomX

# Install
<div>
<p>
sudo apt-get install build-essential libssl-dev libboost-all-dev git libdb5.1++-dev libminiupnpc-dev screen
> **SUPER FAST TRANSACTIONS:** Instant payments and quick confirmation. Much faster than Bitcoin. Your payments will be processed anywhere in the world at any time, as quickly as possible. The speed of payment, which is the distinctive advantage of a PhantomX. All transactions are stored in a unit of cost and can be accessed by any user at any time.
git clone https://github.com/phantomxdev/phantomx.git
> **SECURITY & ANONYMOUS:** With the built-in encryption of the wallet, you can safely store your PhantomX on your equipment. We are providing an online wallet soon as possible. Transactions are completely anonymous using darksend.
cd phantomx | cd src | cd leveldb
then chmod +x build_detect_platform
> **GROWING COMMUNITY:** PhantomX has a growing and friendly community. We have many plans and developments for the introduction of the coin into real life. We are open for cooperation and everyone can participate and contribute to the improvement of the dissemination PhantomX.
cd ..


### Technical details

**System Protocol:** Proof-of-Work and Proof-of-Stake
**Hash Algorithm:** X11
**Currency symbols:** PNX
**Market Cap:** 50 millions
**Block Time:** 120 seconds
**Masternode Collateral:** 20.000 PNX
**Masternode Rewards:** 50% from PoS



### How to install

Updating Ubuntu system
```sh
sudo apt-get update
sudo apt-get upgrade
sudo apt-get dist-upgrade
```

Installing new packages
```sh
sudo apt-get install -y build-essential libssl-dev libboost-all-dev git libdb5.3++-dev libminiupnpc-dev screen
```

Creating folder on root structure and give permission
```sh
sudo mkdir /wallets
sudo chmod 777 /wallets
```

Downloading source code
```sh
git clone https://github.com/phantomxdev/phantomx.git phantomx
cd phantomx
```

Changing permission to run
```sh
cd ./src/leveldb
chmod +x build_detect_platform
cd ../..
```

Compiling daemon
```sh
make -f makefile.unix
```


### Technical guides for more detail

**Masternode on Windows:** https://phantomx.co/guide/how-to-create-masternode-windows
**Masternode on Linux:** https://phantomx.co/guide/how-to-create-masternode-linux
**Updating blockchain:** https://phantomx.co/guide/how-to-update-blockchain



### Contacts
**Website:** https://www.phantomx.co
**Telegram:** https://t.me/joinchat/GuzdQUN9fdpX3fSJ4bqWTQ
**Discord:** https://discord.gg/JU7jwZX
**Twitter:** https://twitter.com/PhantomX_Coin
**ANN BitCoinTalk:** https://bitcointalk.org/index.php?topic=2251352.msg22765424.0

</p>
<br>
53 changes: 53 additions & 0 deletions install_requirements.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
#!/bin/bash

echo ============================================================
echo ==================== P H A N T O M X =====================
echo ============================================================

#################################################################
# Update Ubuntu and install prerequisites for running PhantomX #
#################################################################
sudo apt-get update
sudo apt-get upgrade
sudo apt-get dist-upgrade


#################################################################
# Install all necessary packages for building PhantomX #
#################################################################
sudo apt-get install -y build-essential libssl-dev
sudo apt-get install -y libboost-all-dev git libdb5.3++-dev
sudo apt-get install -y libminiupnpc-dev screen


#################################################################
# Creating local wallet folder to download and install PhantomX #
#################################################################
sudo mkdir /wallets
sudo chmod 777 /wallets

#################################################################
# Downloading source code from Github #
#################################################################
git clone https://github.com/phantomxdev/phantomx.git phantomx
cd phantomx

#################################################################
# Changing permission to run #
#################################################################
cd ./src/leveldb
chmod +x build_detect_platform
cd ../..


#################################################################
# Compiling daemon #
#################################################################
make -f makefile.unix


#################################################################
# Infos #
#################################################################
echo Visit: http://www.phantomx.co \n
echo Check guides how to create masternodes and news about PhantomX
Loading

0 comments on commit e5776ad

Please sign in to comment.