Pages:
Author

Topic: 🚀🚀🚀🚀 | GorillaBucks | Custom Multipool LIVE | Social Media Network | 💵🐵💵 - page 84. (Read 133306 times)

full member
Activity: 188
Merit: 100

Why I split all my coins into deposits of 1 and made 4x the coin increase lol
Which coin are you talking about?
Please explain your proccess
Gorillabucks you could also do with vary but maybe too late now , if you do try I would maybe reccomend splits of around 10 now for vary. How it has worked so far for me is making all my deposits in the amount of 1 and when ever I staked all that I staked was 1 coin. By doing this my actual net weight would hardly drop as I only staked 1 coin and the reward for bucks is between 1 and 9 . Now if you think about it if you had 100 bucks and did split that up into 99 deposits of 1 coin you would of lost the last coin in transaction fees, you are looking at an average stake of around 495 coins resulting in a balance of 594 coins . Now this is a average maths based on spots vary system used on bucks and you could get more or less as the reward does cycle through from 1-9 and your stake could fall anywhere.
legendary
Activity: 1111
Merit: 1000
crypto-enthusiast since 2012
This is your chance to acquire more bucks, and never hear from me again, EVER. I will sell off the others. Hell, Ill even delete all my posts once the transaction is complete. I just want out, and far away. For that matter if ANYONE wants a large amount of Bucks, let me know so I can post them. I prefer BTC but will consider others. I will also accept vary.

Vegas

you should sell your vary too, smart guy... you've got pwned too hard already. get out of all spot's coins.

get on gorilla.exchange now and set some low sell orders.
i'm sure someone that is good with math and have a high IQ will buy 'em all
 Cheesy
legendary
Activity: 2548
Merit: 1054
CPU Web Mining 🕸️ on webmining.io
At this point I want nothing to do with any of these coins especially bucks. @Spots. If you would agree to buy all my bucks @1.30 US, I will put them on your exchange. Once all bucks are sold, I will NEVER return here, THAT is a promise. If you want rid of me, and you think bucks will go to the moon, here is your chance to get rid of me and buy more bucks. I will even accept other forms of coins. I would have to look at what you want to give me first. I think its best we part ways at this point. Your call. If anyone wants a large amount of bucks, let me know so I can post them.

Vegas

For the record, this is Vegas PISSED about a 30% profit in about a month
member
Activity: 62
Merit: 10

Why I split all my coins into deposits of 1 and made 4x the coin increase lol
Which coin are you talking about?
Please explain your proccess
legendary
Activity: 1610
Merit: 1003
"Yobit pump alert software" Link in my signature!
This is your chance to acquire more bucks, and never hear from me again, EVER. I will sell off the others. Hell, Ill even delete all my posts once the transaction is complete. I just want out, and far away. For that matter if ANYONE wants a large amount of Bucks, let me know so I can post them. I prefer BTC but will consider others. I will also accept vary.

Vegas
full member
Activity: 188
Merit: 100
Let me make this as clear as possible for all the simpletons who want math as proof that vegasguy is a fucking moron

MMXIV/TEETH Staking Calculations:
Code:
int64 GetProofOfStakeReward(int64 nCoinAge, int nHeight)
{
    int64 nRewardCoinYear = GetProofOfStakeRewardYear(nHeight);  // creation amount per coin-year
    int64 nSubsidy = nRewardCoinYear * nCoinAge * 33 / (365 * 33 + 8);
    if (fDebug && GetBoolArg("-printcreation"))
        printf("GetProofOfStakeReward(): create=%s nCoinAge=%"PRI64d"\n", FormatMoney(nSubsidy).c_str(), nCoinAge);
    return nSubsidy;
}
This system prefers higher inputs, as you can see it uses coinage to scale rewards


Variance Staking System used in VARY and BUCKS:
Code:
int64 GetProofOfStakeReward(int64 nCoinAge, int nHeight)
{
    int64 nRewardCoinYear = GetProofOfStakeRewardYear(nHeight);  // creation amount per coin-year
    int64 nSubsidy = (((nHeight % 9) + ((nCoinAge % 10000) * 33 / (365 * 33 + 8))) + 1) * nRewardCoinYear;
    if (fDebug && GetBoolArg("-printcreation"))
        printf("GetProofOfStakeReward(): create=%s nCoinAge=%"PRI64d"\n", FormatMoney(nSubsidy).c_str(), nCoinAge);
    return nSubsidy;
}
Coinage is squished and rewards are based on a Variance of factors, which are static regardless of input size, resulting in small inputs being more stake-efficient

All of this is common knowledge by now, anyone who does not understand this is either a moron or intentionally ignoring my advice. Go shill shitty HBN somewhere else now, dick

Why I split all my coins into deposits of 1 and made 4x the coin increase lol
member
Activity: 112
Merit: 10
★YoBit.Net★ 100+ Coins Exchange & Dice
legendary
Activity: 1610
Merit: 1003
"Yobit pump alert software" Link in my signature!
Dude, I just want out. The trust is gone. That simple.
legendary
Activity: 2548
Merit: 1054
CPU Web Mining 🕸️ on webmining.io
That awkward moment when you realize how stupid you are, huh vegas?
hero member
Activity: 566
Merit: 500
Let me make this as clear as possible for all the simpletons who want math as proof that vegasguy is a fucking moron

MMXIV/TEETH Staking Calculations:
Code:
int64 GetProofOfStakeReward(int64 nCoinAge, int nHeight)
{
    int64 nRewardCoinYear = GetProofOfStakeRewardYear(nHeight);  // creation amount per coin-year
    int64 nSubsidy = nRewardCoinYear * nCoinAge * 33 / (365 * 33 + 8);
    if (fDebug && GetBoolArg("-printcreation"))
        printf("GetProofOfStakeReward(): create=%s nCoinAge=%"PRI64d"\n", FormatMoney(nSubsidy).c_str(), nCoinAge);
    return nSubsidy;
}
This system prefers higher inputs, as you can see it uses coinage to scale rewards


Variance Staking System used in VARY and BUCKS:
Code:
int64 GetProofOfStakeReward(int64 nCoinAge, int nHeight)
{
    int64 nRewardCoinYear = GetProofOfStakeRewardYear(nHeight);  // creation amount per coin-year
    int64 nSubsidy = (((nHeight % 9) + ((nCoinAge % 10000) * 33 / (365 * 33 + 8))) + 1) * nRewardCoinYear;
    if (fDebug && GetBoolArg("-printcreation"))
        printf("GetProofOfStakeReward(): create=%s nCoinAge=%"PRI64d"\n", FormatMoney(nSubsidy).c_str(), nCoinAge);
    return nSubsidy;
}
Coinage is squished and rewards are based on a Variance of factors, which are static regardless of input size, resulting in small inputs being more stake-efficient

All of this is common knowledge by now, anyone who does not understand this is either a moron or intentionally ignoring my advice. Go shill shitty HBN somewhere else now, dick

i knew this already, that was the whole point of variance was it not, to even out the odds between large holders and smaller holders  Smiley
legendary
Activity: 1610
Merit: 1003
"Yobit pump alert software" Link in my signature!
At this point I want nothing to do with any of these coins especially bucks. @Spots. If you would agree to buy all my bucks @1.30 US, I will put them on your exchange. Once all bucks are sold, I will NEVER return here, THAT is a promise. If you want rid of me, and you think bucks will go to the moon, here is your chance to get rid of me and buy more bucks. I will even accept other forms of coins. I would have to look at what you want to give me first. I think its best we part ways at this point. Your call. If anyone wants a large amount of bucks, let me know so I can post them.

Vegas
legendary
Activity: 2548
Merit: 1054
CPU Web Mining 🕸️ on webmining.io
Let me make this as clear as possible for all the simpletons who want math as proof that vegasguy is a fucking moron

MMXIV/TEETH Staking Calculations:
Code:
int64 GetProofOfStakeReward(int64 nCoinAge, int nHeight)
{
    int64 nRewardCoinYear = GetProofOfStakeRewardYear(nHeight);  // creation amount per coin-year
    int64 nSubsidy = nRewardCoinYear * nCoinAge * 33 / (365 * 33 + 8);
    if (fDebug && GetBoolArg("-printcreation"))
        printf("GetProofOfStakeReward(): create=%s nCoinAge=%"PRI64d"\n", FormatMoney(nSubsidy).c_str(), nCoinAge);
    return nSubsidy;
}
This system prefers higher inputs, as you can see it uses coinage to scale rewards


Variance Staking System used in VARY and BUCKS:
Code:
int64 GetProofOfStakeReward(int64 nCoinAge, int nHeight)
{
    int64 nRewardCoinYear = GetProofOfStakeRewardYear(nHeight);  // creation amount per coin-year
    int64 nSubsidy = (((nHeight % 9) + ((nCoinAge % 10000) * 33 / (365 * 33 + 8))) + 1) * nRewardCoinYear;
    if (fDebug && GetBoolArg("-printcreation"))
        printf("GetProofOfStakeReward(): create=%s nCoinAge=%"PRI64d"\n", FormatMoney(nSubsidy).c_str(), nCoinAge);
    return nSubsidy;
}
Coinage is squished and rewards are based on a Variance of factors, which are static regardless of input size, resulting in small inputs being more stake-efficient

All of this is common knowledge by now, anyone who does not understand this is either a moron or intentionally ignoring my advice. Go shill shitty HBN somewhere else now, dick
member
Activity: 62
Merit: 10
Finally got Teeth wallet to sync back up. Did a fresh install, and had to restart the wallet only a mere 17 times because it kept freezing...but its working Smiley

So, what is the best way to stake teeth? I had 578 after the swap, and now I have a whopping 592. 14 whole Teeth. Is this a good reward?
Thanks
legendary
Activity: 1610
Merit: 1003
"Yobit pump alert software" Link in my signature!
lol.. thats your answer to ABSOLUTE PROO from wiki?!!? "err your stupid".

Vegas

Yes, you are a fucking idiot and that wiki means nothing to how VARY and BUCKS create rewards. Compare how rewards are calculated in the source

Now I'm adding you to ignore for real here

ya.. your right
Quote
wiki means nothing

Vegas
legendary
Activity: 2548
Merit: 1054
CPU Web Mining 🕸️ on webmining.io
lol.. thats your answer to ABSOLUTE PROO from wiki?!!? "err your stupid".

Vegas

Yes, you are a fucking idiot and that wiki means nothing to how VARY and BUCKS create rewards. Compare how rewards are calculated in the source

Now I'm adding you to ignore for real here
legendary
Activity: 1610
Merit: 1003
"Yobit pump alert software" Link in my signature!
lol.. thats your answer to ABSOLUTE PROOF from wiki?!!? "err your stupid".

Vegas
legendary
Activity: 2548
Merit: 1054
CPU Web Mining 🕸️ on webmining.io
Here is your moron:

Yes, go ahead and call wiki a liar:

Your POS system is NOT that different when it comes to block sizes. The reward system is different. Thats all.

This is a copy and past from wiki: scroll to the middle of the page:

Benefits of larger blocks:

Larger reward on PoS generation
Lowers the CPU use to run stake (multiple small blocks are more difficult to process)
Faster generation of stake (wastes less power running computers)
Benefits of smaller blocks:

Enhances network security (more hash rate devoted to PoS)
Easier for the network to process
Slows the rate new coins are generated

http://wiki.hobonickels.info/index.php?title=Coin_Control



My god, you are stupid lol

Go look at the reward code for Variance and BUCKS idiot, coinage is squished

Holy shit you are even more clueless than I thought.. Even after I spent HOURS explaining remedial procedures to you in email.. I give you step by step, special snowflake advice, you ignore it, now your ass is sore. Fuck off and welcome to my ignore list  Wink

(Seriously, though, small inputs are better if you have even 1/100th of the brain power you claim to have, you would recognize it in the code, which I'm sure you can't comprehend)
legendary
Activity: 1610
Merit: 1003
"Yobit pump alert software" Link in my signature!
Here is your moron:

Yes, go ahead and call wiki a liar:

Your POS system is NOT that different when it comes to block sizes. The reward system is different. Thats all.

This is a copy and paste from wiki: scroll to the middle of the page:

Benefits of larger blocks:

Larger reward on PoS generation
Lowers the CPU use to run stake (multiple small blocks are more difficult to process)
Faster generation of stake (wastes less power running computers)


Benefits of smaller blocks

Enhances network security (more hash rate devoted to PoS)
Easier for the network to process
Slows the rate new coins are generated

http://wiki.hobonickels.info/index.php?title=Coin_Control

legendary
Activity: 2548
Merit: 1054
CPU Web Mining 🕸️ on webmining.io
Spots why wont you answer a simple question, Ive asked 3 times now: Ok so under my scenario with a person with $200 in gorillabucks, and no other spots coins, after the swap , the value will become $50. What amount did you come up with?

Vegas

My math shows $5 billion

Exactly Wink

The truth is that you didn't follow my advice to split up coins, fell behind in staking, and now you're butthurt trying to blame me. We all see through your $6 website, just give up already. You are seriously stripping away any credibility you have

"Split up your coins"!?!??!? Are you serious!?!? This is BASIC pos 101 man. Larger stakes WILL always beat smaller stakes. Thats not even up for debate. Why would you purposefully tell people to create the smallest blocks possible?? SO they get can get beat by "someone" who carries MUCH larger amounts?

Vegas

He wants everyone to have small blocks so he can get more rewards than all of his holders. He's making large blocks while everyone else is making small blocks. I can't believe I was so blind to his lies.

If you use large blocks for VARY and BUCKS staking, you are truly a moron lol
legendary
Activity: 2548
Merit: 1054
CPU Web Mining 🕸️ on webmining.io
Spots why wont you answer a simple question, Ive asked 3 times now: Ok so under my scenario with a person with $200 in gorillabucks, and no other spots coins, after the swap , the value will become $50. What amount did you come up with?

Vegas

My math shows $5 billion

Exactly Wink

The truth is that you didn't follow my advice to split up coins, fell behind in staking, and now you're butthurt trying to blame me. We all see through your $6 website, just give up already. You are seriously stripping away any credibility you have

"Split up your coins"!?!??!? Are you serious!?!? This is BASIC pos 101 man. Larger stakes WILL always beat smaller stakes. Thats not even up for debate. Why would you purposefully tell people to create the smallest blocks possible?? SO they get can get beat by "someone" who carries MUCH larger amounts?

Vegas

Shows you're an idiot. Variance staking system prefers low inputs for higher frequency. Way to pay attention to the last 4 months of work   Roll Eyes
Pages:
Jump to: