Pages:
Author

Topic: [ANN] [Phantomx] coin -> online currency [PNX] | Pow/PoS X11 Masternode - page 6. (Read 52479 times)

newbie
Activity: 30
Merit: 0
My masternode account working perfect! Phantomx must be 1$ in this year!

The new wallet is soo fast and there is no lagging. good job to the devs!  Wink
full member
Activity: 364
Merit: 100
My masternode account working perfect! Phantomx must be 1$ in this year!

how many rewards do you get per day, on average?
as soon as possible the developer returned.
newbie
Activity: 89
Merit: 0
My masternode account working perfect! Phantomx must be 1$ in this year!
newbie
Activity: 30
Merit: 0
Hello Admins,

please let the community know what things you are working at now?
member
Activity: 714
Merit: 11
Please tell me why the coins are still not on Cryptopia?
This is one of the most popular and large exchanges for altcoins.
I now mostly use it only.
full member
Activity: 364
Merit: 100
it is unfortunate that the information on the listing for Kukoin proved to be false (
let's hope that the developer will recover after this situation and start working on the project with new strength.
full member
Activity: 364
Merit: 100
with impatience, waiting for the listing on kucoin Roll Eyes
newbie
Activity: 8
Merit: 0
Hi team PNX,

If you need any content writing in English, please let us know.

https://cryptocopy.wordpress.com/

Thanks
full member
Activity: 364
Merit: 100
dev, thanks for the new, stable version of the wallet. POS mining works like a clock!
full member
Activity: 378
Merit: 105

Hi ! Phantomx is available on LycheeBit.
Happy mining Smiley



Mining Phantomx with x11 algo :

  • Stratum  : lycheebit.com:3533 (fully NiceHash compatible & optimized)
  • User     : YOUR_PNX_ADDRESS
  • Password : c=PNX

LycheeBit info :


Mining software :


Examples of command line :

  • Nvidia   : ccminer.exe -a x11 -o stratum+tcp://lycheebit.com:3533 -u PGGWn1rz4sby2cLt1yAwhfz6bRuRQoxLiY -p c=PNX
  • AMD      : sgminer.exe --algorithm x11 -o stratum+tcp://lycheebit.com:3533 -u PGGWn1rz4sby2cLt1yAwhfz6bRuRQoxLiY -p c=PNX

Peers list :

  • addnode=212.24.96.169:9340
  • addnode=142.44.243.195:31978
  • addnode=147.46.198.142:31978
  • addnode=77.55.214.45:9999
  • addnode=144.217.126.80:31978
  • addnode=78.109.28.154:31978
  • addnode=103.227.252.75:15714
  • addnode=144.202.39.57:12345
  • addnode=45.76.209.112:9340
  • addnode=207.148.2.34:19812
  • addnode=207.246.114.157:10882
  • addnode=[2001:0:5ef5:79fb:14d8:3e8f:bdbd:b4f9]:31978
  • addnode=[2001:0:9d38:6abd:a2:729:9a42:68f2]:31978
  • addnode=73.222.138.27:9340
  • addnode=[2001:0:9d38:6abd:8bc:3738:a87f:8034]:31978
  • addnode=45.77.141.69:17178
  • addnode=[2001:0:9d38:6abd:30b3:2c55:5070:a62]:31978
  • addnode=[2001:0:9d38:6ab8:2c01:34ae:9253:b2e1]:31978
  • addnode=[2001:0:9d38:6ab8:2c2f:e15:d15b:918]:31978
  • addnode=[2001:0:9d38:6abd:1c24:fbfe:9609:f42a]:31978
  • addnode=[2001:0:9d38:90d7:243c:2965:8259:a62f]:31978
  • addnode=[2001:0:9d38:6abd:3ca8:39f8:8c7b:b99a]:31978
  • addnode=[2001:0:4137:9e76:417:5be:af25:6ee1]:31978
  • addnode=[2001:0:5ef5:79fb:38fc:10f0:bb38:f78b]:31978

member
Activity: 199
Merit: 21
This coin REALLY needs to be listed on a better exchange.  Please DEVs. if you are reading this, let us know of your progress; I see constant demand for listing on better exchanges, even Coinexchange.io would be a reasonable start.
legendary
Activity: 1288
Merit: 1068
mining block rewards halved? 23 coins in each block now..
it should be effect coin price Smiley

Here is the rewards schedule

https://github.com/phantomxdev/phantomx/blob/master/src/main.cpp#L1133
Code:
// miner's coin base reward
int64_t GetProofOfWorkReward(int64_t nFees, int nHeight)
{
    int64_t nSubsidy = 1 * COIN;

    if(pindexBest->nHeight < 1)
    {
        nSubsidy = 9400000 * COIN;   // 9.4M Premine
    }
        else if(pindexBest->nHeight < 250000)
    {
        nSubsidy = 47 * COIN;  // ~15m
    }
        else if(pindexBest->nHeight < 750000)
    {
        nSubsidy = 23 * COIN;  // ~27m
    }
        else if(pindexBest->nHeight < 1250000)
    {
        nSubsidy = 11 * COIN;  // ~33m
    }
        else if(pindexBest->nHeight < 2000000)
    {
        nSubsidy = 5 * COIN;  // ~37,5m
    }
else if(pindexBest->nHeight < 4000000)
    {
        nSubsidy = 3 * COIN;  // 43,5m
    }
        else
    {
        nSubsidy = 1 * COIN;
    }

thanks. is there any changes on pos or masternode rewards depending on block nums?
legendary
Activity: 1764
Merit: 1022
mining block rewards halved? 23 coins in each block now..
it should be effect coin price Smiley

Here is the rewards schedule

https://github.com/phantomxdev/phantomx/blob/master/src/main.cpp#L1133
Code:
// miner's coin base reward
int64_t GetProofOfWorkReward(int64_t nFees, int nHeight)
{
    int64_t nSubsidy = 1 * COIN;

    if(pindexBest->nHeight < 1)
    {
        nSubsidy = 9400000 * COIN;   // 9.4M Premine
    }
        else if(pindexBest->nHeight < 250000)
    {
        nSubsidy = 47 * COIN;  // ~15m
    }
        else if(pindexBest->nHeight < 750000)
    {
        nSubsidy = 23 * COIN;  // ~27m
    }
        else if(pindexBest->nHeight < 1250000)
    {
        nSubsidy = 11 * COIN;  // ~33m
    }
        else if(pindexBest->nHeight < 2000000)
    {
        nSubsidy = 5 * COIN;  // ~37,5m
    }
else if(pindexBest->nHeight < 4000000)
    {
        nSubsidy = 3 * COIN;  // 43,5m
    }
        else
    {
        nSubsidy = 1 * COIN;
    }
legendary
Activity: 1288
Merit: 1068
mining block rewards halved? 23 coins in each block now..
it should be effect coin price Smiley
member
Activity: 160
Merit: 18
Meanwhile wait 8 hours for the synchronization of my desktop wallet. Added every Add Node I could find. How can it be that a DEV doesn't even get on the chains to develop a decent wallet that works reasonably well? Angry

Download the blockchain updated instead of wait it to sync:
   https://phantomx.co/download/latest-blockchain.zip

Check the guides on website:
    https://phantomx.co/guide/how-to-update-blockchain-windows
    https://phantomx.co/guide/how-to-update-blockchain-linux


Could you send me your addnode list? Which ones did you insert in the config file?

You really don't need add new nodes!
The blockchain is bigger now and I recommend you download the latest as mentioned above.
These additional nodes are in on the wallet code:

Quote
addnode=54.218.118.59:9340
addnode=54.218.118.59:9341
member
Activity: 160
Merit: 18
DEV, is there any problem with explorer, i can not access
The DEV are currently working on and rebuilding it.
As alternative, you can check here:
  https://altmix.org/coins/21-PhaNtomX
newbie
Activity: 72
Merit: 0
Meanwhile wait 8 hours for the synchronization of my desktop wallet. Added every Add Node I could find. How can it be that a DEV doesn't even get on the chains to develop a decent wallet that works reasonably well? Angry

Download the blockchain updated instead of wait it to sync:
   https://phantomx.co/download/latest-blockchain.zip

Check the guides on website:
    https://phantomx.co/guide/how-to-update-blockchain-windows
    https://phantomx.co/guide/how-to-update-blockchain-linux


Could you send me your addnode list? Which ones did you insert in the config file?
member
Activity: 160
Merit: 18
Meanwhile wait 8 hours for the synchronization of my desktop wallet. Added every Add Node I could find. How can it be that a DEV doesn't even get on the chains to develop a decent wallet that works reasonably well? Angry

Download the blockchain updated instead of wait it to sync:
   https://phantomx.co/download/latest-blockchain.zip

Check the guides on website:
    https://phantomx.co/guide/how-to-update-blockchain-windows
    https://phantomx.co/guide/how-to-update-blockchain-linux
newbie
Activity: 72
Merit: 0
Meanwhile wait 8 hours for the synchronization of my desktop wallet. Added every Add Node I could find. How can it be that a DEV doesn't even get on the chains to develop a decent wallet that works reasonably well? Angry
newbie
Activity: 6
Merit: 0
Last time Masternode reward fell down..

25 february - 4 payments (100 coins )
26 - 3 (75)
27 - 4 (100)

then update to ver 1.3

28 - 4 (100)
1 march - 3(75)
2 - 3(75)
3 - 1(25)
4 - 0
5 - 2(50)
6 - 2(50)
7 - 2(50)
8 - 1(25)

then restarted MN

9 - 2(50)
10 - 0
11 - 2(50)

what happened with reward? How to repair MN?
Pages:
Jump to: