Bitcoin Forum
April 27, 2024, 02:39:53 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: [1] 2 »  All
  Print  
Author Topic: [ANN] PHPCoin - Pure PHP blockchain built for Web RELAUNCH | EPOW | MN | POS  (Read 817 times)
phpcoinn (OP)
Newbie
*
Offline Offline

Activity: 14
Merit: 0


View Profile
November 14, 2021, 02:30:16 PM
Last edit: March 24, 2023, 09:20:56 AM by phpcoinn
 #1

PHPCoin (PHP)
Pure PHP blockchain built for Web

We are proudly introduce new unique blockchain technology and coin.

About PHPCoin
Why another coin?

While many coins are just designed to build, gain interest, give fast profit to owners and exit as potential scam, PHPCoin will tend to develop through a large developer community who can contribute to the project.

Also PHPCoin is designed as some kind of "green" coin which is tend to solve issue of heavy mining algorithms by utilising its own and unique elapsed proof of work (EPOW)

PHPCoin is built on the web based platform which is easily understandable to a wider number of developers. It explains basic blockchain principles and allows people to understand its full purpose not just for earning profit.

In that way PHPCoin will implement decentralized apps and databases and smart contracts written fully in well known and popular language php.

What differentiate PHPCoin from other cryptocurrencies?

Open and easy
Built on the web based platform which is easily understandable to a wider number of developers. It explains basic blockchain principles and allows people to understand its full purpose.

Lightweight coin
Designed as "green" coin which is tend to solve issue of heavy mining algorithms by utilising its own and unique elapsed proof of work (EPOW), minable with any web browser.

Built for web
Creates a network of nodes which while keeping the network secure, hosts decentralized apps, and earn rewards for its services

Coin specs

Name: PHPCoin
Symbol: PHP
Block time: 60 sec
Consensys: EPOW (Elapsed proof of Work)

Address generation:
ECDSA public/private key
RIPEMD160 + 3xSHA256

Address prefix: P

Transaction fee: 0 (during mining and masternode phase)

Genesis block: 2021-11-12 21:17:52
Genesis premine: 4900010 (locked until mastenode phase)

Total supply: 210000000
Masternode collateral: 100000

Mining:
Argon2 for POW, SHA256 for hashing

Resources

Website:
https://phpcoin.net/
Discord:
https://discord.gg/2H2YvFexQq
Github source:
https://github.com/phpcoinn/node
Twitter:
https://twitter.com/phpcoin
Whitepaper (draft version):
https://docs.google.com/document/d/1zb3j1Gyz0i40Iydnt_1Bz532Jqxw-crpGAWZSqYeflg/edit
Detailed reward scheme
https://docs.google.com/spreadsheets/d/e/2PACX-1vTiaJ0bl0Pfle14kM0bKE00IzaHExn7kmhisBRHMBC2jAoNhklcY1yQmE5G4AsnXdJ0SAk4WfW7G2mi/pubhtml
Explorer:
https://explorer.phpcoin.net/apps/explorer/
Main nodes:
https://node1.phpcoin.net/
https://node2.phpcoin.net/
https://node3.phpcoin.net/
https://miner1.phpcoin.net/
https://miner2.phpcoin.net/

Wallets
Linux: https://phpcoin.net/download/phpcoin-wallet-linux
Windows: https://phpcoin.net/download/phpcoin-wallet-win
Wallet source
https://github.com/phpcoinn/electron-wallet

Miner node
https://miner1.phpcoin.net/apps/miner/
https://miner2.phpcoin.net/apps/miner/
Faucet
https://faucet.phpcoin.net/apps/faucet/

CLI Wallet Linux:
https://phpcoin.net/download/phpcoin-wallet
CLI Miner Linux:
https://phpcoin.net/download/phpcoin-miner

1714228793
Hero Member
*
Offline Offline

Posts: 1714228793

View Profile Personal Message (Offline)

Ignore
1714228793
Reply with quote  #2

1714228793
Report to moderator
1714228793
Hero Member
*
Offline Offline

Posts: 1714228793

View Profile Personal Message (Offline)

Ignore
1714228793
Reply with quote  #2

1714228793
Report to moderator
1714228793
Hero Member
*
Offline Offline

Posts: 1714228793

View Profile Personal Message (Offline)

Ignore
1714228793
Reply with quote  #2

1714228793
Report to moderator
"If you don't want people to know you're a scumbag then don't be a scumbag." -- margaritahuyan
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
phpcoinn (OP)
Newbie
*
Offline Offline

Activity: 14
Merit: 0


View Profile
November 14, 2021, 02:40:45 PM
Last edit: November 14, 2021, 04:26:01 PM by phpcoinn
 #2

Blockchain consensys
Phpcoin blockchain tries to solve actual issues with traditional proof of work consensus (POW). As POW is often criticized  as a very energy waste, PHP Coin utilizes its own lightweight version of POW, called EPOW -  Elapsed Proof Of Work.
Basic principle of this algorithm is that valid hash is calculated minimum one per second for each miner in such a way that more time elapsed from target block time it will be easier to mine block.

Mining process
Miners generate a new block on the network.
In order to do that, miners get work from a connected node. That work contains the latest block info and pending transactions from mempool.
Then the miner goes into a loop and calculates his elapsed times from the last block.
To prove his work, the miner hashes the base string with argon and its address.
Based on its address it calculates hit value which is changed every second elapsed from last block time.
With a given difficulty for the next block which is calculated from node, miner calculates the target and when its hit value becomes higher than target it mines a block.

Explanation of mining hash calculation
https://docs.google.com/drawings/d/171dKeVOGB8NFwOtJyN_NqYpyxOWcVwOtad7r5DYatHg/edit

Target is not fixed, it is calculated from difficulty and is lower as time passes from the previous block. It is centered to be optimal to mine blocks for given block time.

After finding the hash, the miner sends it to the associated node. Node checks miner hash, and if it is validated, node adds a new block to blockchain. For that block beside mempool transactions node adds two reward transactions.
First one is reward (90%) to miner who submitted targeted hash and second is reward to node (10%) who added block to blockchain. Amount for rewards are calculated from actual block reward.
If node is also a miner then the whole reward goes to it.

Difficulty adjustment
Based on a simple formula that calculates the last 10 blocks, difficulty is calculated and adjusted for every block. If a block is found faster than block target time, difficulty is increased by 5%, otherwise it is decreased by 5%.
phpcoinn (OP)
Newbie
*
Offline Offline

Activity: 14
Merit: 0


View Profile
November 14, 2021, 02:49:49 PM
Last edit: November 14, 2021, 04:57:58 PM by phpcoinn
 #3

Start mining in browser

1. Go to wallet node: https://wallet.phpcoin.net/apps/wallet/login.php
2. Click on link to create new address, or directly to link: https://wallet.phpcoin.net/apps/wallet/login.php?action=signup
3. Create your account (write down generated keys)
4. Go to faucet node: https://faucet.phpcoin.net/apps/faucet/
5. Enter your address, and click on button Receive
6. Wait for transaction to be added to blockchain
7. Go to wallet, login with public/private key
8. Send on transaction to some address (for example back to faucet: PYcFC7BvhJ4queNMwbDuxBGdqSmBvyjXZT)
9. Wait for transaction to be added to blockchain
10. Go to miner node: https://miner1.phpcoin.net/apps/miner/
11. Enter you address and click Start to mine
MineDumpNextOne
Member
**
Offline Offline

Activity: 278
Merit: 10


View Profile
November 14, 2021, 02:50:56 PM
 #4

What means Dropped in mining?
phpcoinn (OP)
Newbie
*
Offline Offline

Activity: 14
Merit: 0


View Profile
November 14, 2021, 02:59:03 PM
 #5

What means Dropped in mining?

It means that miner detected new block on network and need to start over
MineDumpNextOne
Member
**
Offline Offline

Activity: 278
Merit: 10


View Profile
November 14, 2021, 03:03:07 PM
 #6

What means Dropped in mining?

It means that miner detected new block on network and need to start over

Can I mine from wallet and browser at the same time? Why miner does not use CPU heavily?
phpcoinn (OP)
Newbie
*
Offline Offline

Activity: 14
Merit: 0


View Profile
November 14, 2021, 03:17:22 PM
 #7

What means Dropped in mining?

It means that miner detected new block on network and need to start over

Can I mine from wallet and browser at the same time? Why miner does not use CPU heavily?

You can mine but on different addresses.
Mining on same address does not improve chances, because in every moment of time hash is same for same address.
It is planned to be easy mining, not impacting CPU or memory, so any device can mine coin.
Details about Elapsed Proof of Work, you can check in whitepaper document.
TMAXP
Newbie
*
Offline Offline

Activity: 28
Merit: 1


View Profile
November 14, 2021, 04:00:04 PM
 #8

get started
kilopovidla
Member
**
Offline Offline

Activity: 370
Merit: 21


View Profile
November 14, 2021, 07:49:09 PM
 #9

Unusual project
ttl99
Newbie
*
Offline Offline

Activity: 46
Merit: 0


View Profile
November 15, 2021, 05:21:11 AM
 #10

ookkkk ready mine Shocked Shocked Shocked
patrinz37
Newbie
*
Offline Offline

Activity: 73
Merit: 0


View Profile
November 15, 2021, 07:48:17 AM
 #11

0 Accepted 0 Rejected 143 Dropped  BALANCE 0 Huh Huh Huh
MineDumpNextOne
Member
**
Offline Offline

Activity: 278
Merit: 10


View Profile
November 15, 2021, 11:35:41 AM
 #12

Any antibot protection? I think there is already bots mining this.
rakokiller1
Jr. Member
*
Offline Offline

Activity: 159
Merit: 2


View Profile
November 15, 2021, 01:37:00 PM
 #13

It looks very strange, how does it work, what resources does it involve?
phpcoinn (OP)
Newbie
*
Offline Offline

Activity: 14
Merit: 0


View Profile
November 15, 2021, 01:59:04 PM
 #14

0 Accepted 0 Rejected 143 Dropped  BALANCE 0 Huh Huh Huh

Just no luck :-(
phpcoinn (OP)
Newbie
*
Offline Offline

Activity: 14
Merit: 0


View Profile
November 15, 2021, 05:22:37 PM
 #15

It looks very strange, how does it work, what resources does it involve?

It is basic mathematics calculation and very simple. Please check whitepaper for explanation.
That is idea, to not be heavy on any resources, so any device can mine it.
TMAXP
Newbie
*
Offline Offline

Activity: 28
Merit: 1


View Profile
November 16, 2021, 12:52:33 PM
 #16

why when i mining with wallet its mining 15 min  and i have some error and mining stoping
phpcoinn (OP)
Newbie
*
Offline Offline

Activity: 14
Merit: 0


View Profile
November 16, 2021, 09:11:33 PM
 #17

why when i mining with wallet its mining 15 min  and i have some error and mining stoping

That problem is just resolved, please download new wallet version.
kilopovidla
Member
**
Offline Offline

Activity: 370
Merit: 21


View Profile
November 18, 2021, 04:40:44 PM
 #18

New version of wallet (1.06) not mining correctly.
"Error in miner
Error: TypeError: Cannot read property 'height' of undefined a minute ago"
msduzaman
Newbie
*
Offline Offline

Activity: 4
Merit: 0


View Profile
November 18, 2021, 08:15:51 PM
 #19

not working
"Hash rejected
generator-disabled"
phpcoinn (OP)
Newbie
*
Offline Offline

Activity: 14
Merit: 0


View Profile
February 08, 2023, 07:20:36 PM
 #20

After a year of development this coin will soon go public.
Soon we will publish more information.

Join our discord for more details.
https://discord.gg/2H2YvFexQq
Pages: [1] 2 »  All
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!