Bitcoin Forum
May 21, 2024, 08:38:41 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 [27] 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 »
  Print  
Author Topic: [ANN] More added to Wallet UPDATE PLEASE PosEx PEX Hybrid POW/POS [ANN]  (Read 74252 times)
ROBERTO
Legendary
*
Offline Offline

Activity: 1421
Merit: 1001


View Profile
March 28, 2016, 10:43:44 PM
 #521

I think it's not like all only PoS coin, because PoW still running and eat all PoS block at 10000% Per Year
Just need to check block explorer and check how many blocks are Pos
jc12345
Legendary
*
Offline Offline

Activity: 1638
Merit: 1013


View Profile
March 28, 2016, 10:57:06 PM
 #522

Ok thanks

Time will tell.

Now this will be the same with any staking coin? I assume you do this same process with all your staking coins?


The basic principles are the same but the recipe and execution thereof differs from coin to coin based on criteria like coin specs and your goals. There are a bunch of attributes that impact the strategy and therefore each strategy is unique in order to achieve the objectives you set for the specific coin. It is like painting a picture : each painting is unique but you will most of the time use a paintbrush, paint, easel and canvas and basic rules like color theory.
ROBERTO
Legendary
*
Offline Offline

Activity: 1421
Merit: 1001


View Profile
March 29, 2016, 12:04:37 AM
 #523

Don't know what is HiPoS, but for me that mean HIGH PoS reward! Tell me if i'm wrong.
That can't happen because PoW still running or maybe if all miners stop mine this we can have our PoS block rewards.
It's not a HIGH PoS coin.... Sorry
jc12345
Legendary
*
Offline Offline

Activity: 1638
Merit: 1013


View Profile
March 29, 2016, 12:30:19 AM
 #524

Don't know what is HiPoS, but for me that mean HIGH PoS reward! Tell me if i'm wrong.
That can't happen because PoW still running or maybe if all miners stop mine this we can have our PoS block rewards.
It's not a HIGH PoS coin.... Sorry

Whenever a POS block is hit after block 20000 high POS is applied. It is in the code and you can verify it in the block explorer. Regarding the POW, POW and POS can run simultaneously. If there is a bit of a side wind the football game continues. It makes things more interesting and provides a safety net. Rules are rules and the wallet has to apply the rules and remember your rewards accumulate in line with the rules coded into the wallet.  Just be patient.

Extract from the code.

Code:
// proof of stake rewards. POS begins at block 1000
    
    int64_t nSubsidy = nCoinAge * COIN_YEAR_REWARD * 33 / (365 * 33 + 8);  // 10% yearly interest
    
    if(pindexBest->nHeight < 10020)
    {
        nSubsidy = nCoinAge * COIN_YEAR_REWARD * 33 / (365 * 33 + 8);  // 10% yearly interest
    }
    else if(pindexBest->nHeight < 20000)
    {
        nSubsidy = nCoinAge * COIN_YEAR_REWARD * 33 / (365 * 33 + 8) / 2;  // 5% yearly interest
    }
    else if(pindexBest->nHeight < 30000)
    {
        nSubsidy = nCoinAge * COIN_YEAR_REWARD * 33 / (365 * 33 + 8) * 1000;  // 10,000% yearly interest
    }
    else if(pindexBest->nHeight < 40000)
    {
        nSubsidy = nCoinAge * COIN_YEAR_REWARD * 33 / (365 * 33 + 8) * 900;  // 9,000% yearly interest
    }
    else if(pindexBest->nHeight < 50000)
    {
        nSubsidy = nCoinAge * COIN_YEAR_REWARD * 33 / (365 * 33 + 8) * 800;  // 8,000% yearly interest
    }
    else if(pindexBest->nHeight < 60000)
    {
        nSubsidy = nCoinAge * COIN_YEAR_REWARD * 33 / (365 * 33 + 8) * 700;  // 7,000% yearly interest
    }
    else if(pindexBest->nHeight < 70000)
    {
        nSubsidy = nCoinAge * COIN_YEAR_REWARD * 33 / (365 * 33 + 8) * 600;  // 6,000% yearly interest
    }
    else if(pindexBest->nHeight < 80000)
    {
        nSubsidy = nCoinAge * COIN_YEAR_REWARD * 33 / (365 * 33 + 8) * 500;  // 5,000% yearly interest
    }
    else if(pindexBest->nHeight < 90000)
    {
        nSubsidy = nCoinAge * COIN_YEAR_REWARD * 33 / (365 * 33 + 8) * 400;  // 4,000% yearly interest
    }
    else if(pindexBest->nHeight < 100000)
    {
        nSubsidy = nCoinAge * COIN_YEAR_REWARD * 33 / (365 * 33 + 8) * 300;  // 3,000% yearly interest
    }
    else if(pindexBest->nHeight < 110000)
    {
        nSubsidy = nCoinAge * COIN_YEAR_REWARD * 33 / (365 * 33 + 8) * 200;  // 2,000% yearly interest
    }
    else if(pindexBest->nHeight < 120000)
    {
        nSubsidy = nCoinAge * COIN_YEAR_REWARD * 33 / (365 * 33 + 8) * 100;  // 1,000% yearly interest
    }
    else if(pindexBest->nHeight < 130000)
    {
        nSubsidy = nCoinAge * COIN_YEAR_REWARD * 33 / (365 * 33 + 8) * 90;  // 900% yearly interest
    }
    else if(pindexBest->nHeight < 140000)
    {
        nSubsidy = nCoinAge * COIN_YEAR_REWARD * 33 / (365 * 33 + 8) * 80;  // 800% yearly interest
    }
    else if(pindexBest->nHeight < 150000)
    {
        nSubsidy = nCoinAge * COIN_YEAR_REWARD * 33 / (365 * 33 + 8) * 70;  // 700% yearly interest
    }
    else if(pindexBest->nHeight < 160000)
    {
        nSubsidy = nCoinAge * COIN_YEAR_REWARD * 33 / (365 * 33 + 8) * 60;  // 600% yearly interest
    }
    else if(pindexBest->nHeight < 170000)
    {
        nSubsidy = nCoinAge * COIN_YEAR_REWARD * 33 / (365 * 33 + 8) * 50;  // 500% yearly interest
    }
    else if(pindexBest->nHeight < 180000)
    {
        nSubsidy = nCoinAge * COIN_YEAR_REWARD * 33 / (365 * 33 + 8) * 40;  // 400% yearly interest
    }
    else if(pindexBest->nHeight < 190000)
    {
        nSubsidy = nCoinAge * COIN_YEAR_REWARD * 33 / (365 * 33 + 8) * 30;  // 300% yearly interest
    }
    else if(pindexBest->nHeight < 200000)
    {
        nSubsidy = nCoinAge * COIN_YEAR_REWARD * 33 / (365 * 33 + 8) * 20;  // 200% yearly interest
    }
    else if(pindexBest->nHeight < 210000)
    {
        nSubsidy = nCoinAge * COIN_YEAR_REWARD * 33 / (365 * 33 + 8);  // 10% yearly interest
    }
Nightz
Hero Member
*****
Offline Offline

Activity: 1302
Merit: 504


View Profile
March 29, 2016, 12:45:30 AM
 #525

Don't know what is HiPoS, but for me that mean HIGH PoS reward! Tell me if i'm wrong.
That can't happen because PoW still running or maybe if all miners stop mine this we can have our PoS block rewards.
It's not a HIGH PoS coin.... Sorry

Whenever a POS block is hit after block 20000 high POS is applied. It is in the code and you can verify it in the block explorer. Regarding the POW, POW and POS can run simultaneously. If there is a bit of a side wind the football game continues. It makes things more interesting and provides a safety net. Rules are rules and the wallet has to apply the rules and remember your rewards accumulate in line with the rules coded into the wallet.  Just be patient.

Extract from the code.

Code:
// proof of stake rewards. POS begins at block 1000
    
    int64_t nSubsidy = nCoinAge * COIN_YEAR_REWARD * 33 / (365 * 33 + 8);  // 10% yearly interest
    
    if(pindexBest->nHeight < 10020)
    {
        nSubsidy = nCoinAge * COIN_YEAR_REWARD * 33 / (365 * 33 + 8);  // 10% yearly interest
    }
    else if(pindexBest->nHeight < 20000)
    {
        nSubsidy = nCoinAge * COIN_YEAR_REWARD * 33 / (365 * 33 + 8) / 2;  // 5% yearly interest
    }
    else if(pindexBest->nHeight < 30000)
    {
        nSubsidy = nCoinAge * COIN_YEAR_REWARD * 33 / (365 * 33 + 8) * 1000;  // 10,000% yearly interest
    }
    else if(pindexBest->nHeight < 40000)
    {
        nSubsidy = nCoinAge * COIN_YEAR_REWARD * 33 / (365 * 33 + 8) * 900;  // 9,000% yearly interest
    }
    else if(pindexBest->nHeight < 50000)
    {
        nSubsidy = nCoinAge * COIN_YEAR_REWARD * 33 / (365 * 33 + 8) * 800;  // 8,000% yearly interest
    }
    else if(pindexBest->nHeight < 60000)
    {
        nSubsidy = nCoinAge * COIN_YEAR_REWARD * 33 / (365 * 33 + 8) * 700;  // 7,000% yearly interest
    }
    else if(pindexBest->nHeight < 70000)
    {
        nSubsidy = nCoinAge * COIN_YEAR_REWARD * 33 / (365 * 33 + 8) * 600;  // 6,000% yearly interest
    }
    else if(pindexBest->nHeight < 80000)
    {
        nSubsidy = nCoinAge * COIN_YEAR_REWARD * 33 / (365 * 33 + 8) * 500;  // 5,000% yearly interest
    }
    else if(pindexBest->nHeight < 90000)
    {
        nSubsidy = nCoinAge * COIN_YEAR_REWARD * 33 / (365 * 33 + 8) * 400;  // 4,000% yearly interest
    }
    else if(pindexBest->nHeight < 100000)
    {
        nSubsidy = nCoinAge * COIN_YEAR_REWARD * 33 / (365 * 33 + 8) * 300;  // 3,000% yearly interest
    }
    else if(pindexBest->nHeight < 110000)
    {
        nSubsidy = nCoinAge * COIN_YEAR_REWARD * 33 / (365 * 33 + 8) * 200;  // 2,000% yearly interest
    }
    else if(pindexBest->nHeight < 120000)
    {
        nSubsidy = nCoinAge * COIN_YEAR_REWARD * 33 / (365 * 33 + 8) * 100;  // 1,000% yearly interest
    }
    else if(pindexBest->nHeight < 130000)
    {
        nSubsidy = nCoinAge * COIN_YEAR_REWARD * 33 / (365 * 33 + 8) * 90;  // 900% yearly interest
    }
    else if(pindexBest->nHeight < 140000)
    {
        nSubsidy = nCoinAge * COIN_YEAR_REWARD * 33 / (365 * 33 + 8) * 80;  // 800% yearly interest
    }
    else if(pindexBest->nHeight < 150000)
    {
        nSubsidy = nCoinAge * COIN_YEAR_REWARD * 33 / (365 * 33 + 8) * 70;  // 700% yearly interest
    }
    else if(pindexBest->nHeight < 160000)
    {
        nSubsidy = nCoinAge * COIN_YEAR_REWARD * 33 / (365 * 33 + 8) * 60;  // 600% yearly interest
    }
    else if(pindexBest->nHeight < 170000)
    {
        nSubsidy = nCoinAge * COIN_YEAR_REWARD * 33 / (365 * 33 + 8) * 50;  // 500% yearly interest
    }
    else if(pindexBest->nHeight < 180000)
    {
        nSubsidy = nCoinAge * COIN_YEAR_REWARD * 33 / (365 * 33 + 8) * 40;  // 400% yearly interest
    }
    else if(pindexBest->nHeight < 190000)
    {
        nSubsidy = nCoinAge * COIN_YEAR_REWARD * 33 / (365 * 33 + 8) * 30;  // 300% yearly interest
    }
    else if(pindexBest->nHeight < 200000)
    {
        nSubsidy = nCoinAge * COIN_YEAR_REWARD * 33 / (365 * 33 + 8) * 20;  // 200% yearly interest
    }
    else if(pindexBest->nHeight < 210000)
    {
        nSubsidy = nCoinAge * COIN_YEAR_REWARD * 33 / (365 * 33 + 8);  // 10% yearly interest
    }

Some nice detailing yet again from you  Grin Your posts make for interesting reading even tho it was me who set those rewards  Tongue

Pow is beating Pos at the moment but when there is enough coins staking Pos is Certainly going to rival Pow if not out do it
Nightz
Hero Member
*****
Offline Offline

Activity: 1302
Merit: 504


View Profile
March 29, 2016, 12:47:48 AM
 #526

I think it's not like all only PoS coin, because PoW still running and eat all PoS block at 10000% Per Year
Just need to check block explorer and check how many blocks are Pos

Could be a good thing at the same time as it will keep the coin supply lower than if everyone was staking and 0 mining.

This way the network has support to move along without waiting how long for stakes to come in which eventually should become faster than PoW

Also means no stuck chain  Grin
ROBERTO
Legendary
*
Offline Offline

Activity: 1421
Merit: 1001


View Profile
March 29, 2016, 12:49:18 AM
 #527

Don't know what is HiPoS, but for me that mean HIGH PoS reward! Tell me if i'm wrong.
That can't happen because PoW still running or maybe if all miners stop mine this we can have our PoS block rewards.
It's not a HIGH PoS coin.... Sorry

Whenever a POS block is hit after block 20000 high POS is applied. It is in the code and you can verify it in the block explorer. Regarding the POW, POW and POS can run simultaneously. If there is a bit of a side wind the football game continues. It makes things more interesting and provides a safety net. Rules are rules and the wallet has to apply the rules and remember your rewards accumulate in line with the rules coded into the wallet.  Just be patient.

Extract from the code.

Code:
// proof of stake rewards. POS begins at block 1000
    
    int64_t nSubsidy = nCoinAge * COIN_YEAR_REWARD * 33 / (365 * 33 + 8);  // 10% yearly interest
    
    if(pindexBest->nHeight < 10020)
    {
        nSubsidy = nCoinAge * COIN_YEAR_REWARD * 33 / (365 * 33 + 8);  // 10% yearly interest
    }
    else if(pindexBest->nHeight < 20000)
    {
        nSubsidy = nCoinAge * COIN_YEAR_REWARD * 33 / (365 * 33 + 8) / 2;  // 5% yearly interest
    }
    else if(pindexBest->nHeight < 30000)
    {
        nSubsidy = nCoinAge * COIN_YEAR_REWARD * 33 / (365 * 33 + 8) * 1000;  // 10,000% yearly interest
    }
    else if(pindexBest->nHeight < 40000)
    {
        nSubsidy = nCoinAge * COIN_YEAR_REWARD * 33 / (365 * 33 + 8) * 900;  // 9,000% yearly interest
    }
    else if(pindexBest->nHeight < 50000)
    {
        nSubsidy = nCoinAge * COIN_YEAR_REWARD * 33 / (365 * 33 + 8) * 800;  // 8,000% yearly interest
    }
    else if(pindexBest->nHeight < 60000)
    {
        nSubsidy = nCoinAge * COIN_YEAR_REWARD * 33 / (365 * 33 + 8) * 700;  // 7,000% yearly interest
    }
    else if(pindexBest->nHeight < 70000)
    {
        nSubsidy = nCoinAge * COIN_YEAR_REWARD * 33 / (365 * 33 + 8) * 600;  // 6,000% yearly interest
    }
    else if(pindexBest->nHeight < 80000)
    {
        nSubsidy = nCoinAge * COIN_YEAR_REWARD * 33 / (365 * 33 + 8) * 500;  // 5,000% yearly interest
    }
    else if(pindexBest->nHeight < 90000)
    {
        nSubsidy = nCoinAge * COIN_YEAR_REWARD * 33 / (365 * 33 + 8) * 400;  // 4,000% yearly interest
    }
    else if(pindexBest->nHeight < 100000)
    {
        nSubsidy = nCoinAge * COIN_YEAR_REWARD * 33 / (365 * 33 + 8) * 300;  // 3,000% yearly interest
    }
    else if(pindexBest->nHeight < 110000)
    {
        nSubsidy = nCoinAge * COIN_YEAR_REWARD * 33 / (365 * 33 + 8) * 200;  // 2,000% yearly interest
    }
    else if(pindexBest->nHeight < 120000)
    {
        nSubsidy = nCoinAge * COIN_YEAR_REWARD * 33 / (365 * 33 + 8) * 100;  // 1,000% yearly interest
    }
    else if(pindexBest->nHeight < 130000)
    {
        nSubsidy = nCoinAge * COIN_YEAR_REWARD * 33 / (365 * 33 + 8) * 90;  // 900% yearly interest
    }
    else if(pindexBest->nHeight < 140000)
    {
        nSubsidy = nCoinAge * COIN_YEAR_REWARD * 33 / (365 * 33 + 8) * 80;  // 800% yearly interest
    }
    else if(pindexBest->nHeight < 150000)
    {
        nSubsidy = nCoinAge * COIN_YEAR_REWARD * 33 / (365 * 33 + 8) * 70;  // 700% yearly interest
    }
    else if(pindexBest->nHeight < 160000)
    {
        nSubsidy = nCoinAge * COIN_YEAR_REWARD * 33 / (365 * 33 + 8) * 60;  // 600% yearly interest
    }
    else if(pindexBest->nHeight < 170000)
    {
        nSubsidy = nCoinAge * COIN_YEAR_REWARD * 33 / (365 * 33 + 8) * 50;  // 500% yearly interest
    }
    else if(pindexBest->nHeight < 180000)
    {
        nSubsidy = nCoinAge * COIN_YEAR_REWARD * 33 / (365 * 33 + 8) * 40;  // 400% yearly interest
    }
    else if(pindexBest->nHeight < 190000)
    {
        nSubsidy = nCoinAge * COIN_YEAR_REWARD * 33 / (365 * 33 + 8) * 30;  // 300% yearly interest
    }
    else if(pindexBest->nHeight < 200000)
    {
        nSubsidy = nCoinAge * COIN_YEAR_REWARD * 33 / (365 * 33 + 8) * 20;  // 200% yearly interest
    }
    else if(pindexBest->nHeight < 210000)
    {
        nSubsidy = nCoinAge * COIN_YEAR_REWARD * 33 / (365 * 33 + 8);  // 10% yearly interest
    }

Thanks. But @PoSeX need to explain that for all on this OP... It's NOT A HIGH PoS COIN!!!!

For me a HIGH PoS coin is that: https://bitcointalk.org/index.php?topic=1211692.0

Sorry for the reference
GREEDYJOHN
Legendary
*
Offline Offline

Activity: 1778
Merit: 1000


View Profile
March 29, 2016, 12:54:38 AM
 #528

I think it's not like all only PoS coin, because PoW still running and eat all PoS block at 10000% Per Year
Just need to check block explorer and check how many blocks are Pos

Could be a good thing at the same time as it will keep the coin supply lower than if everyone was staking and 0 mining.

This way the network has support to move along without waiting how long for stakes to come in which eventually should become faster than PoW

Also means no stuck chain  Grin
Chain will continue to move, because everybody wants PEX  Cheesy

If nobody POS stakes, then people will POW mine

However, if nobody POW mines, then a CLEVER MEMBER will SOLO-MINE ALL the POW BLOCKS, and then he will POS stake them  Wink

If this coin ever gets neglected, then somebody else will pick up all the rewards.

To avoid a single individual picking all the rewards, many people are now still mining POW BLOCKS.

This "RAT RACE" will always keep the chain moving  Grin

Nightz
Hero Member
*****
Offline Offline

Activity: 1302
Merit: 504


View Profile
March 29, 2016, 12:57:22 AM
 #529


Thanks. But @PoSeX need to explain that for all on this OP... It's NOT A HIGH PoS COIN!!!!

For me a HIGH PoS coin is that: https://bitcointalk.org/index.php?topic=1211692.0

Sorry for the reference

To me the coin you refer too is more Dynamic Pos in my eyes rather than HiPos.

See the diff with the rewards compared to those of most other HiPos coins and PEX looks the same Wink

Code:
// DigiCube: miner's coin stake is rewarded based on coin age spent (coin-days)
int64 GetProofOfStakeReward(int64 nCoinAge, int nHeight)
{
    static int64 nRewardCoinYear = 2000 * CENT;
    int64 nSubsidy = nRewardCoinYear * nCoinAge * 33 / (365 * 33 + 8);
int64 nMinReward = nHeight * .0011;
int64 nMaxReward = nHeight * .01;
int64 nSquish = nSubsidy / 1000000;
    if (nHeight > 500000) {
if (nSquish > nMaxReward) {
nSubsidy = nMaxReward * COIN;
}
if (nSquish < nMinReward) {
nSubsidy = 1 * COIN;
}
}
    return nSubsidy;
}

static const int64 nTargetTimespan = 2 * 24 * 60 * 60;  // 48 hours
static const int64 nTargetSpacingWorkMax = STAKE_TARGET_SPACING; // 1 hour
Nightz
Hero Member
*****
Offline Offline

Activity: 1302
Merit: 504


View Profile
March 29, 2016, 12:59:55 AM
 #530

I think it's not like all only PoS coin, because PoW still running and eat all PoS block at 10000% Per Year
Just need to check block explorer and check how many blocks are Pos

Could be a good thing at the same time as it will keep the coin supply lower than if everyone was staking and 0 mining.

This way the network has support to move along without waiting how long for stakes to come in which eventually should become faster than PoW

Also means no stuck chain  Grin
Chain will continue to move, because everybody wants PEX  Cheesy

If nobody POS stakes, then people will POW mine

However, if nobody POW mines, then a CLEVER MEMBER will SOLO-MINE ALL the POW BLOCKS, and then he will POS stake them  Wink

If this coin ever gets neglected, then somebody else will pick up all the rewards.

To avoid a single individual picking all the rewards, many people are now still mining POW BLOCKS.

This "RAT RACE" will always keep the chain moving  Grin

Indeed John. And it will be fun and interesting to see how long people continue to mine it as I know when the HiPos rewards are over PoW will probably get you more coins mining vs staking if you do not own a lot.
GREEDYJOHN
Legendary
*
Offline Offline

Activity: 1778
Merit: 1000


View Profile
March 29, 2016, 01:04:57 AM
 #531

I think it's not like all only PoS coin, because PoW still running and eat all PoS block at 10000% Per Year
Just need to check block explorer and check how many blocks are Pos

Could be a good thing at the same time as it will keep the coin supply lower than if everyone was staking and 0 mining.

This way the network has support to move along without waiting how long for stakes to come in which eventually should become faster than PoW

Also means no stuck chain  Grin
Chain will continue to move, because everybody wants PEX  Cheesy

If nobody POS stakes, then people will POW mine

However, if nobody POW mines, then a CLEVER MEMBER will SOLO-MINE ALL the POW BLOCKS, and then he will POS stake them  Wink

If this coin ever gets neglected, then somebody else will pick up all the rewards.

To avoid a single individual picking all the rewards, many people are now still mining POW BLOCKS.

This "RAT RACE" will always keep the chain moving  Grin

Indeed John. And it will be fun and interesting to see how long people continue to mine it as I know when the HiPos rewards are over PoW will probably get you more coins mining vs staking if you do not own a lot.
When they stop POW mining, somebody else will always take over, even as a cheap source of BTC. This will also help to maintain Trade volume.

PoSeX (OP)
Full Member
***
Offline Offline

Activity: 126
Merit: 100


View Profile
March 29, 2016, 01:09:39 AM
 #532

I will create an update Posex V2.1.1.0 Beast

This will be an update before I get Posex V3 Sorted  Wink


I Will increase PoS rewards
I Will lower Min Stake Age (Should speed up PoS)
I Will Adjust the proto version so all have to be on the same wallet

ANY COMPLAINTS
ROBERTO
Legendary
*
Offline Offline

Activity: 1421
Merit: 1001


View Profile
March 29, 2016, 01:10:54 AM
 #533

Who is the Dev here???

Where is @PoSeX, it's not supposed to be here when HiPoS start??

Why put on OP Block 20,000 - 30,000 = 10000% Per Year
It's fake!!! PoW is running!!! and all holder with a wallet 0.xxx can't stake!!

I stake 15 Pex today because i have a large amount

https://chainz.cryptoid.info/pex/address.dws?5NR2gHPd1Q5MyM3JEvS8i6NWesgiH9kVZm.htm

Nothing to hide, just want to understand and people understand
PoSeX (OP)
Full Member
***
Offline Offline

Activity: 126
Merit: 100


View Profile
March 29, 2016, 01:16:51 AM
 #534

Who is the Dev here???

Where is @PoSeX, it's not supposed to be here when HiPoS start??

Why put on OP Block 20,000 - 30,000 = 10000% Per Year
It's fake!!! PoW is running!!! and all holder with a wallet 0.xxx can't stake!!

I stake 15 Pex today because i have a large amount

https://chainz.cryptoid.info/pex/address.dws?5NR2gHPd1Q5MyM3JEvS8i6NWesgiH9kVZm.htm

Nothing to hide, just want to understand and people understand

I'm Here what do you mean ?

How is it fake ? you get 10k % per year now divide that by 365 and thats what you would get a day in %

And no you are right amounts under 1 coin will probably take some considerable time to build weight.

But again how is it fake you can see the code and the reward system so what is the issue is it because The rewards are too low or ?  Huh
Nightz
Hero Member
*****
Offline Offline

Activity: 1302
Merit: 504


View Profile
March 29, 2016, 01:20:29 AM
 #535

Who is the Dev here???

Where is @PoSeX, it's not supposed to be here when HiPoS start??

Why put on OP Block 20,000 - 30,000 = 10000% Per Year
It's fake!!! PoW is running!!! and all holder with a wallet 0.xxx can't stake!!

I stake 15 Pex today because i have a large amount

https://chainz.cryptoid.info/pex/address.dws?5NR2gHPd1Q5MyM3JEvS8i6NWesgiH9kVZm.htm

Nothing to hide, just want to understand and people understand

Posex is the dev mate.

It's on the OP as thats what is in the code I imagine that is why, It's not fake either, Yes Pow is running but so is Pos too, Amounts under 1 will always struggle to get a stake I have seen this argument many of times on Anns now. It is nice that you are staking and making how many versus others me included
ROBERTO
Legendary
*
Offline Offline

Activity: 1421
Merit: 1001


View Profile
March 29, 2016, 01:24:31 AM
 #536

Who is the Dev here???

Where is @PoSeX, it's not supposed to be here when HiPoS start??

Why put on OP Block 20,000 - 30,000 = 10000% Per Year
It's fake!!! PoW is running!!! and all holder with a wallet 0.xxx can't stake!!

I stake 15 Pex today because i have a large amount

https://chainz.cryptoid.info/pex/address.dws?5NR2gHPd1Q5MyM3JEvS8i6NWesgiH9kVZm.htm

Nothing to hide, just want to understand and people understand

I'm Here what do you mean ?

How is it fake ? you get 10k % per year now divide that by 365 and thats what you would get a day in %

And no you are right amounts under 1 coin will probably take some considerable time to build weight.

But again how is it fake you can see the code and the reward system so what is the issue is it because The rewards are too low or ?  Huh

And HiPoS is HIGH POS coin? right?
Why PoW still alive?
Change your HiPoS!! That is FAKE!! It's not a HIGH PoS coin!!

HiPoS coin is that, i start with 4 CUBE and now i have 29K CUBE..
http://www.presstab.pw/phpexplorer/CUBE/address.php?address=CV5UqNBW9LZN76KsS3KP1rvWxgX8jmuJKp

And i think people here with only 0.xxx or 1 shit PEX understand like me!

Or explain much better on your OP!!!!

Nightz
Hero Member
*****
Offline Offline

Activity: 1302
Merit: 504


View Profile
March 29, 2016, 01:31:38 AM
 #537

Who is the Dev here???

Where is @PoSeX, it's not supposed to be here when HiPoS start??

Why put on OP Block 20,000 - 30,000 = 10000% Per Year
It's fake!!! PoW is running!!! and all holder with a wallet 0.xxx can't stake!!

I stake 15 Pex today because i have a large amount

https://chainz.cryptoid.info/pex/address.dws?5NR2gHPd1Q5MyM3JEvS8i6NWesgiH9kVZm.htm

Nothing to hide, just want to understand and people understand

I'm Here what do you mean ?

How is it fake ? you get 10k % per year now divide that by 365 and thats what you would get a day in %

And no you are right amounts under 1 coin will probably take some considerable time to build weight.

But again how is it fake you can see the code and the reward system so what is the issue is it because The rewards are too low or ?  Huh

And HiPoS is HIGH POS coin? right?
Why PoW still alive?
Change your HiPoS!! That is FAKE!! It's not a HIGH PoS coin!!

HiPoS coin is that, i start with 4 CUBE and now i have 29K CUBE..
http://www.presstab.pw/phpexplorer/CUBE/address.php?address=CV5UqNBW9LZN76KsS3KP1rvWxgX8jmuJKp

And i think people here with only 0.xxx or 1 shit PEX understand like me!

Or explain much better on your OP!!!!



Yes & Pow is alive as it got re enabled due to coins not being able to stake quick enough due to the low supply and the blockchain come to a pretty much stand still until that update sorted it.

You sir are just confusing like really. and a bit of an attitude too.

I honestly doubt people are sat around waiting for these stakes off amounts lower than 1. I know I would not be.

And notice you started with 4 on cube coins So if we could go back to the start of cube and I send you 0.xxx cube you saying you'd still be where you are now ? nope I don't think so.

I get constructive feedback but that is not.

.
PoSeX (OP)
Full Member
***
Offline Offline

Activity: 126
Merit: 100


View Profile
March 29, 2016, 01:35:14 AM
 #538

Who is the Dev here???

Where is @PoSeX, it's not supposed to be here when HiPoS start??

Why put on OP Block 20,000 - 30,000 = 10000% Per Year
It's fake!!! PoW is running!!! and all holder with a wallet 0.xxx can't stake!!

I stake 15 Pex today because i have a large amount

https://chainz.cryptoid.info/pex/address.dws?5NR2gHPd1Q5MyM3JEvS8i6NWesgiH9kVZm.htm

Nothing to hide, just want to understand and people understand

I'm Here what do you mean ?

How is it fake ? you get 10k % per year now divide that by 365 and thats what you would get a day in %

And no you are right amounts under 1 coin will probably take some considerable time to build weight.

But again how is it fake you can see the code and the reward system so what is the issue is it because The rewards are too low or ?  Huh

And HiPoS is HIGH POS coin? right?
Why PoW still alive?
Change your HiPoS!! That is FAKE!! It's not a HIGH PoS coin!!

HiPoS coin is that, i start with 4 CUBE and now i have 29K CUBE..
http://www.presstab.pw/phpexplorer/CUBE/address.php?address=CV5UqNBW9LZN76KsS3KP1rvWxgX8jmuJKp

And i think people here with only 0.xxx or 1 shit PEX understand like me!

Or explain much better on your OP!!!!



I will create an update Posex V2.1.1.0 Beast

This will be an update before I get Posex V3 Sorted  Wink


I Will increase PoS rewards
I Will lower Min Stake Age (Should speed up PoS)
I Will Adjust the proto version so all have to be on the same wallet

ANY COMPLAINTS
Nightz
Hero Member
*****
Offline Offline

Activity: 1302
Merit: 504


View Profile
March 29, 2016, 01:38:24 AM
 #539

Who is the Dev here???

Where is @PoSeX, it's not supposed to be here when HiPoS start??

Why put on OP Block 20,000 - 30,000 = 10000% Per Year
It's fake!!! PoW is running!!! and all holder with a wallet 0.xxx can't stake!!

I stake 15 Pex today because i have a large amount

https://chainz.cryptoid.info/pex/address.dws?5NR2gHPd1Q5MyM3JEvS8i6NWesgiH9kVZm.htm

Nothing to hide, just want to understand and people understand

I'm Here what do you mean ?

How is it fake ? you get 10k % per year now divide that by 365 and thats what you would get a day in %

And no you are right amounts under 1 coin will probably take some considerable time to build weight.

But again how is it fake you can see the code and the reward system so what is the issue is it because The rewards are too low or ?  Huh

And HiPoS is HIGH POS coin? right?
Why PoW still alive?
Change your HiPoS!! That is FAKE!! It's not a HIGH PoS coin!!

HiPoS coin is that, i start with 4 CUBE and now i have 29K CUBE..
http://www.presstab.pw/phpexplorer/CUBE/address.php?address=CV5UqNBW9LZN76KsS3KP1rvWxgX8jmuJKp

And i think people here with only 0.xxx or 1 shit PEX understand like me!

Or explain much better on your OP!!!!



I will create an update Posex V2.1.1.0 Beast

This will be an update before I get Posex V3 Sorted  Wink


I Will increase PoS rewards
I Will lower Min Stake Age (Should speed up PoS)
I Will Adjust the proto version so all have to be on the same wallet

ANY COMPLAINTS

He was probably expecting some BIG stakes like what he did with cube is how I'm seeing it. To me it is a good thing it means people with less than one coin need to buy more in order to stake thus helping the market.
ROBERTO
Legendary
*
Offline Offline

Activity: 1421
Merit: 1001


View Profile
March 29, 2016, 01:42:02 AM
 #540

Who is the Dev here???

Where is @PoSeX, it's not supposed to be here when HiPoS start??

Why put on OP Block 20,000 - 30,000 = 10000% Per Year
It's fake!!! PoW is running!!! and all holder with a wallet 0.xxx can't stake!!

I stake 15 Pex today because i have a large amount

https://chainz.cryptoid.info/pex/address.dws?5NR2gHPd1Q5MyM3JEvS8i6NWesgiH9kVZm.htm

Nothing to hide, just want to understand and people understand

I'm Here what do you mean ?

How is it fake ? you get 10k % per year now divide that by 365 and thats what you would get a day in %

And no you are right amounts under 1 coin will probably take some considerable time to build weight.

But again how is it fake you can see the code and the reward system so what is the issue is it because The rewards are too low or ?  Huh

And HiPoS is HIGH POS coin? right?
Why PoW still alive?
Change your HiPoS!! That is FAKE!! It's not a HIGH PoS coin!!

HiPoS coin is that, i start with 4 CUBE and now i have 29K CUBE..
http://www.presstab.pw/phpexplorer/CUBE/address.php?address=CV5UqNBW9LZN76KsS3KP1rvWxgX8jmuJKp

And i think people here with only 0.xxx or 1 shit PEX understand like me!

Or explain much better on your OP!!!!



Yes & Pow is alive as it got re enabled due to coins not being able to stake quick enough due to the low supply and the blockchain come to a pretty much stand still until that update sorted it.

You sir are just confusing like really. and a bit of an attitude too.

I honestly doubt people are sat around waiting for these stakes off amounts lower than 1. I know I would not be.

And notice you started with 4 on cube coins So if we could go back to the start of cube and I send you 0.xxx cube you saying you'd still be where you are now ? nope I don't think so.

I get constructive feedback but that is not.

.

lol... With my 4 cube when i reach the min stake i got my stake at start with the low supply! That is the difference! CUBE is 100% PoS
A coin can't be a HIGH PoS coin if PoW still running.
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 [27] 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 »
  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!