Introduction
What is Phore?
Phore is a digital privacy cryptocurrency with a focus on sustainable development and growth. Phore uses Proof of Stake and Masternodes to secure the network and provide for a deep level of privacy and security. Phore has relatively fast block times compared with Bitcoin and low transaction fees.
Coin Information
| Block Target | 60 seconds |
| Transaction Fee | 0.0001 PHR per kB |
| Block Maturity | 50 |
| PoS Reward | 2.8 PHR |
| Masternode Reward | 4.2 PHR |
| Masternode Collateral | 10,000 PHR |
History
Phore is a digital privacy cryptocurrency, an update and rebrand of KryptKoin (KTK) which was pre-announced in May 2014, and whose distribution started on the 21st May 2014. Kryptkoin was a non-premined coin, distributed equally to people who qualified for a stake. In total, 500 stakes were distributed in 2 stages. Bonus KTK was given to those who held for 30 days. There was no ICO, and no dev premine. The developer received 1 stake, the same as every other stakeholder received. Following launch, Kryptkoin quickly developed a large following and introduced an online marketplace in 2015, which included Paypal integration where digital items such as Wordpress themes and physical items such as clothes were both listed and bought. To facilitate new features, the existing code needed to be rewritten from scratch. This required a swap from Kryptkoin to the new Phore. A two-month window was given to existing KTK holders to swap their coins for new Phore on a 1:1 basis.
Team
The coin has a strong and committed team:
- Phroshi - Lead Developer
- Julian - Core Developer
- Fish313 - Technical Support & Social Media Manager
- Toby - Customer Relations & Social Media Manager
- Shanto - Community Manager & Customer Relations
- Liray - Technical Support & Japanese Community Manager
- Ubermaster - Planning and Partnerships
We will hire more staff and developers to strengthen our team as the Phore expands and evolves.
Roadmap
Phore is a restless currency. The key challenge going forward is to introduce real-world use which attract everyday people. In order to achieve this, Phore will implement advanced features to clearly differentiate Phore from other privacy based digital currencies. A number of these will add to the functionality and strategic integration of the online marketplace, which will be built on the current foundations of Phore. Governance will determine many of the goals going forward to keep the currency decentralized, but a decrease in Master node rewards per block is expected to decrease inflation.
Short Term (Q3 - Q4, 2017)
- Zerocoin Protocol - Fixes a major weakness within most digital currencies. With Zerocoin Protocol implemented within Phore, your purchases and transactions are secure and no one is privy to your financial activity.
- Masternode Governance - Those with Masternodes would be given ‘yes’ or ‘no’ votes using commands built into Phore wallets. Decentralized governance will allow a cryptocurrency network to grow, and incorporate democratic procedures that will ensure the longevity of the project, leading to a truly decentralized management system.
- Online Marketplace - UI compatibility for all devices.
Medium Term (Q1, 2018)
- Segregated Witness - Allows the number of transactions per block on the Phore blockchain to be increased. All signature data will be removed so that more transaction data can be packed in.
- Decentralized Micro Crowdfunding - Part of the Online Marketplace. A decentralized Kickstarter or Indiegogo platform, targeted at the 'side-hustle’ and micro-business generation. This means that the individual, partnership, or small startup with a brilliant invention or service can easily use the Phore platform to raise money, with much lower fees than other traditional platforms. We will also act as escrow until the product is received by the buyer.
- Creation of the Phore Foundation - Develop long-term e-commerce solutions, investments, partnerships, and to promote the sustainability and longevity of Phore.
Medium to Long Term (Q2-Q4, 2018)
- Smart Contracts - This will allow decentralized apps (dApps) to run on the Phore Page 5 of 6 blockchain. Payment channels, trustless prediction markets, and decentralized exchanges are all things we expect to see.
- iOS and Android apps - Integrated wallets and online marketplace access. This will unshackle Phore from use on laptops and desktops to make it a true mobile-friendly platform.
- Ledger and Trezor Support - For long-term cold storage.
- Phore Labs - Incubator for Phore related projects to encourage development and growth through the Phore blockchain
The Phore Foundation will invest in projects to help them reach market and then reinvest profits in further projects. It is envisioned that ultimately 5-10% of the projects on the marketplace will be taken up by Phore Lab projects. The Phore Foundation will actively seek out projects to support. These will be sourced from individuals, universities, start-ups, and cooperatives around the world who have the capacity improve the lives of others. Investments will be made in the form of Phore currency, and participants will sell exclusively through the Phore marketplace online for a fixed minimum period before being allowed to sell their product locally offline.
Long Term (Q4, 2018 and beyond)
- A.I. Bot creation - For trading support of Phore on exchanges.
- Phore Foundation Scholarships - Talented Coders will receive paid internships on placements at Phore.
- Phore Foundation Charitable Donations - Phore will be donated to charitable causes as voted by the Masternode Governance system.
- Further Partnerships - With industry-leading companies.
- Event Sponsorship - Sponsor Phore related events to promote Phore as a platform
Masternodes
Masternode definition.
Vultr VPS Server Guide
What you will need:
- Local computer windows 7-10
- Remote server – VPS www.vultr.com/
- PuTTY to configure and setup VPS
- 10,000 PHR
Register an account with Vultr. Once you’ve done that, can create your first server
Select server location, have multiple options to choose from. All are perfectly ok.
Next server type: Select Ubuntu 16.4 x64
Server size, select the $5/mo option
You can setup a SSH key so you don’t need to use the password every time to login to the server. But
to keep things simple for the moment we are just going to use the standard password given after the
server is ready.
Last thing server hostname & label
Next we’re going to install PuTTY while the server is being setup.
Download from here: http://putty.org
Once you install that, back to our Vultr account to grab the login details.
Now open PuTTY to add the server
Enter the IP address in the Host Name, and enter the server name to Saved Sessions. Click save.
Click the open button. Now the console has opened, click yes.
Then enter your server login details provided in your Vultr account.
Now you cannot ctrl+V to paste in the console. Either right click on mouse or shift+insert (sometimes
on keyboard it will just be INS key)
User: root
Password: when you paste it will not display. So don’t try and paste again. Just paste once and click
keyboard enter.
Now the first thing we are going to do are a few updates to the server and install the required
dependencies for the wallet to run…
Run these commands in order, one at a time:
sudo apt-get update
sudo apt-get upgrade
sudo apt-get dist-upgrade
sudo apt-get install nano htop git
sudo apt-get install software-properties-common
sudo apt-get install build-essential libtool autotools-dev pkg-config libssl-dev
sudo apt-get install libboost-all-dev
sudo apt-get install libminiupnpc-dev
sudo apt-get install autoconf
sudo apt-get install automake
sudo add-apt-repository ppa:bitcoin/bitcoin
sudo apt-get update
sudo apt-get install libdb4.8-dev libdb4.8++-dev
Now we have server updated and all the dependencies installed we can move on to the next part
and that’s installing a firewall…
apt-get install ufw
ufw allow ssh/tcp
ufw limit ssh/tcp
ufw allow 11771/tcp
ufw logging on
ufw enable
Check your firewall status using the following command:
ufw status
Onto the next step, setting up a swap file… Again just follow each one in order:
cd /var
sudo touch swap.img
sudo chmod 600 swap.img
sudo dd if=/dev/zero of=/var/swap.img bs=1024k count=2000
mkswap /var/swap.img
sudo swapon /var/swap.img
sudo free
sudo echo "/var/swap.img none swap sw 0 0" >> /etc/fstab
cd
reboot
After the reboot you will need to log back into the server. Once you login again, let’s install and
compile the Phore wallet…
sudo git clone https://github.com/phoreproject/Phore.git
chmod +x Phore/autogen.sh
chmod +x Phore/share/genbuild.sh
chmod +x Phore/src/leveldb/build_detect_platform
cd Phore
sudo ./autogen.sh
sudo ./configure
sudo make
sudo make install
cd src
mv phored phore-cli phore-tx ~/
cd
Now if you plan to setup multiple masternodes, we can go back to our Vultr account and create a
snapshot of the server we just setup. It will save us time, no requirement to compile again. Unless
we have a wallet update, then need to start from scratch again for any new MN’s and update the
ones already running.
If you only intend to run one MN, run this command to remove the Phore source files, as they are no
longer required.
rm -rf Phore
Let’s fire up the daemon on the server, it will give us an error about missing rpc password. We will
come back to this later.
phored -daemon
Next if you intend to run multiple masternodes we can create the snapshot. Skip this if only intend
to run one mastermode.
Click add snapshot and select the server from the dropdown and add a label. Click take snapshot
This will take a while, grab a cup of tea! :)
Once it’s finished we can continue…
Step 1
We can fire up the qt wallet on your local computer. Generate a new address
Enter a label and click Request payment button.
Copy the address
And now go to the send tab
Enter the copied address and send exactly 10,000 PHR. No more, no less in a single transaction. Wait
for it to confirm on the blockchain.
Now create a new .txt file on your computer, to store the date used for the masternode
Can use this format:
MN Label:
Collateral address:
Masternode Key:
Public IP:
MN conf line:
Go to the [Tools > Debug Console] and enter these commands below:
Step 2
masternode genkey
Copy that into into the .txt file. Masternode Key
Step 3
masternode outputs
Raspberry Pi Guide
test











