Bitcoin Forum
May 24, 2024, 12:12:57 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: [1]
  Print  
Author Topic: 🚀🚀🚀🚀 | GorillaBucks | Custom Multipool LIVE | Social Media Network | 💵🐵💵  (Read 657 times)
This is a self-moderated topic. If you do not want to be moderated by the person who started this topic, create a new topic.
GorillaCouncil (OP)
Newbie
*
Offline Offline

Activity: 1
Merit: 0


View Profile
August 07, 2015, 06:04:37 PM
 #1

The GorillaBucks Multipool is finally ready to go!


http://www.GorillaStake.com/PoolBanner.png

Click anywhere to check out the new GorillaBucks Profit-Switching, Auto-Trading Multipool





What does this do?
GorillaBucks (BUCKS) can no longer be directly mined. The Proof of Work for the coins that were merged into BUCKS was very fair, successful, and well distributed. In an effort to further safeguard the blockchain and ensure faster, more secure transfers, GorillaBucks evolved into the blockchain we have now, which features Encrypted Messaging, Stealth Addresses, GorillaBand Masternodes, and Advanced Coin Control! This is now the only place in the world you can point your miners to earn BUCKS! Now you can choose from four different mining algorithms!

Our custom algorithm for calculating the most profitable coin to mine at live rates ensures our miners get the most for their hashes. By selecting the most profitable coin to mine and automatically switching between them, we are able to make trades with mined coins, buy GorillaBucks, and make payments directly to the your coin wallet address used once per day. This creates automated buying pressure on the live market, resulting in upward price trend creating a mathematical impossibility to go down!


Is this for real?
Altcoin markets are driven by supply and demand. Our objective with this multipool is to create consistent demand on markets for the payout coin. This is accomplished by a variety of methods which we are constantly working to improve. We select the most profitable altcoins using a sophisticated algorithm and use the proceeds to buy the payout coin on the market, creating buy pressure and driving the price higher. Leverage automated trading practices that maximize profits of the hash we receive resulting in more coin paid out to miners


How will I get paid for mining?
We make trades with mined coins, buy GorillaBucks, and make payments directly to the your coin wallet address used several times per day. Details of your shares, hashrate and transaction history are provided on your miner page which also includes profitability estimates based on current market prices. Try us for a few days and you'll see how well it works!



NOTES FOR LAUNCH





Variance Staking Explained
Now that we've all had a few days to get used to the new blockchain and wallet, there have been a few questions to how much people will stake on their deposits. While the changes are not over-the-top complicated, they do change the basic fundamentals of how rewards are calculated. I wanted to take a few minutes to explain exactly what Variance Staking means

First, I'll just copy the code from Github, which makes it pretty self explanatory when you see it singled out. Please note there are a few extra spaces that are not on Github, only because it was making emoticons with them on the forums. With that being said, let's get into it

Code:
int64_t GetProofOfStakeReward(int nHeight, int64_t nCoinAge, int64_t nFees)
{
    int64_t nMultiplier = 100 * CENT;
    int64_t nSubsidy = (((nHeight % 9) + ((nCoinAge % 100000) * 33 / (365 * 33 + 8 ))) + 1) * nMultiplier;
return nSubsidy;
}

nMultiplier is simply used as a tweaking dial that can be turned up or down as needed to control inflation. Using 100 * CENT just gives us full coins, rather than decimals. The main reason is just so this is here later to change if needed, it really serves no purpose other than to do calculations in full coins

The line we are going to look at and break down is this:

int64_t nSubsidy = (((nHeight % 9) + ((nCoinAge % 100000) * 33 / (365 * 33 + 8 ))) + 1) * nMultiplier;

nSubsidy is the final reward that will be passed later on. nHeight is block number and nCoinAge is obvious

nHeight % 9 will take the block number, divide it by 9 and return the remainder as the value
This number will always be between 0 and 9 (the base rewards we have been seeing so far)

nCoinage % 100000 will allow a maximum coinage of 100,000 to be used, which is then run through 33 / (365 * 33 + Cool, to scale it down further and prevent compounding inflation

The final +1 is there for one simple reason.. while doing test runs this problem never came up, but I noticed that it could potentially in the future.. If that last +1 was not there, as unlikely as it is, we could have run into a 'divide by zero' issue while calculating or splitting rewards, so that is just a failsafe to ensure we never return 0 as the value (this was originaly was nHeight calculation is in, but was later replaced. nHeight is only used now to fluctuate rewards for deposits that are not large enough to be scaled by coinage)

Last, as explained above, nMultiplier is only used to turn the final result into a full number, rather than a long reward amount with a staggering amount of decimal places

Hopefully this will clear up a bit on what you can expect both now and for the future as far as staking and GorillaBand rewards. The later in the life of the coin we get, with higher coinage, the faster GorillaBands will pay themselves off. At current rates for now, you are doubling your coins in less than a month



















Pages: [1]
  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!