Skip to content

Commit e5776ad

Browse files
committed
New wallet
1 parent 13915f4 commit e5776ad

140 files changed

Lines changed: 116765 additions & 700 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

README.md

Lines changed: 71 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,82 @@
1-
# phantomx-cryptocurrency
2-
phantomx cryptocurrency, a blockchain based digital money
31

2+
# PhantomX - PNX
43

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

66

7+
### Why invest in PhaNtomX
78

8-
# Install
9-
<div>
10-
<p>
11-
sudo apt-get install build-essential libssl-dev libboost-all-dev git libdb5.1++-dev libminiupnpc-dev screen
9+
> **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.
1210
13-
git clone https://github.com/phantomxdev/phantomx.git
11+
> **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.
1412
15-
cd phantomx | cd src | cd leveldb
16-
then chmod +x build_detect_platform
13+
> **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.
1714
18-
cd ..
15+
16+
17+
### Technical details
18+
19+
**System Protocol:** Proof-of-Work and Proof-of-Stake
20+
**Hash Algorithm:** X11
21+
**Currency symbols:** PNX
22+
**Market Cap:** 50 millions
23+
**Block Time:** 120 seconds
24+
**Masternode Collateral:** 20.000 PNX
25+
**Masternode Rewards:** 50% from PoS
26+
27+
28+
29+
### How to install
30+
31+
Updating Ubuntu system
32+
```sh
33+
sudo apt-get update
34+
sudo apt-get upgrade
35+
sudo apt-get dist-upgrade
36+
```
37+
38+
Installing new packages
39+
```sh
40+
sudo apt-get install -y build-essential libssl-dev libboost-all-dev git libdb5.3++-dev libminiupnpc-dev screen
41+
```
42+
43+
Creating folder on root structure and give permission
44+
```sh
45+
sudo mkdir /wallets
46+
sudo chmod 777 /wallets
47+
```
48+
49+
Downloading source code
50+
```sh
51+
git clone https://github.com/phantomxdev/phantomx.git phantomx
52+
cd phantomx
53+
```
54+
55+
Changing permission to run
56+
```sh
57+
cd ./src/leveldb
58+
chmod +x build_detect_platform
59+
cd ../..
60+
```
61+
62+
Compiling daemon
63+
```sh
1964
make -f makefile.unix
65+
```
66+
67+
68+
### Technical guides for more detail
69+
70+
**Masternode on Windows:** https://phantomx.co/guide/how-to-create-masternode-windows
71+
**Masternode on Linux:** https://phantomx.co/guide/how-to-create-masternode-linux
72+
**Updating blockchain:** https://phantomx.co/guide/how-to-update-blockchain
73+
74+
2075

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

22-
</p>
23-
<br>

install_requirements.sh

Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
#!/bin/bash
2+
3+
echo ============================================================
4+
echo ==================== P H A N T O M X =====================
5+
echo ============================================================
6+
7+
#################################################################
8+
# Update Ubuntu and install prerequisites for running PhantomX #
9+
#################################################################
10+
sudo apt-get update
11+
sudo apt-get upgrade
12+
sudo apt-get dist-upgrade
13+
14+
15+
#################################################################
16+
# Install all necessary packages for building PhantomX #
17+
#################################################################
18+
sudo apt-get install -y build-essential libssl-dev
19+
sudo apt-get install -y libboost-all-dev git libdb5.3++-dev
20+
sudo apt-get install -y libminiupnpc-dev screen
21+
22+
23+
#################################################################
24+
# Creating local wallet folder to download and install PhantomX #
25+
#################################################################
26+
sudo mkdir /wallets
27+
sudo chmod 777 /wallets
28+
29+
#################################################################
30+
# Downloading source code from Github #
31+
#################################################################
32+
git clone https://github.com/phantomxdev/phantomx.git phantomx
33+
cd phantomx
34+
35+
#################################################################
36+
# Changing permission to run #
37+
#################################################################
38+
cd ./src/leveldb
39+
chmod +x build_detect_platform
40+
cd ../..
41+
42+
43+
#################################################################
44+
# Compiling daemon #
45+
#################################################################
46+
make -f makefile.unix
47+
48+
49+
#################################################################
50+
# Infos #
51+
#################################################################
52+
echo Visit: http://www.phantomx.co \n
53+
echo Check guides how to create masternodes and news about PhantomX

0 commit comments

Comments
 (0)