Bitcoin Forum
May 08, 2024, 03:34:53 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 ... 154 »
  Print  
Author Topic: 🚀🚀🚀🚀 | GorillaBucks | Custom Multipool LIVE | Social Media Network | 💵🐵💵  (Read 133302 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.
iGotSpots (OP)
Legendary
*
Offline Offline

Activity: 2548
Merit: 1054


CPU Web Mining 🕸️ on webmining.io


View Profile WWW
May 13, 2015, 02:22:19 AM
Last edit: August 04, 2015, 10:46:18 PM by iGotSpots
 #1






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 + 8), 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




















The forum strives to allow free discussion of any ideas. All policies are built around this principle. This doesn't mean you can post garbage, though: posts should actually contain ideas, and these ideas should be argued reasonably.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1715182493
Hero Member
*
Offline Offline

Posts: 1715182493

View Profile Personal Message (Offline)

Ignore
1715182493
Reply with quote  #2

1715182493
Report to moderator
1715182493
Hero Member
*
Offline Offline

Posts: 1715182493

View Profile Personal Message (Offline)

Ignore
1715182493
Reply with quote  #2

1715182493
Report to moderator
1715182493
Hero Member
*
Offline Offline

Posts: 1715182493

View Profile Personal Message (Offline)

Ignore
1715182493
Reply with quote  #2

1715182493
Report to moderator
leroyjankins
Member
**
Offline Offline

Activity: 98
Merit: 10


View Profile
May 13, 2015, 02:25:23 AM
 #2

Sweet, 1 home for everything! nice
real789
Sr. Member
****
Offline Offline

Activity: 294
Merit: 250


If you can't understand my post please report it


View Profile
May 13, 2015, 02:26:01 AM
 #3

new Home Smiley
yay yay yay

keep on wallet and stake to long term

===Sempak===
crazywack
Legendary
*
Offline Offline

Activity: 1148
Merit: 1000


View Profile
May 13, 2015, 02:26:08 AM
 #4

Great idea putting it all together in 1 place. It's hard jumping threads with so many plantforms to keep up on.

fonzerrellie
Legendary
*
Offline Offline

Activity: 1190
Merit: 1000

Kaspa


View Profile
May 13, 2015, 02:26:16 AM
 #5

proud TEETH and MMXIV holder right here  Cool

#Expanse $EXP 500 transactions 4 .1 EXP 1st Clone of ETH 
WAVES
thc4me
Member
**
Offline Offline

Activity: 93
Merit: 10


View Profile
May 13, 2015, 02:30:10 AM
 #6

Spots, is the Gorilla bucks wallet link above 4.0.2.0 or is it still the old one?
iGotSpots (OP)
Legendary
*
Offline Offline

Activity: 2548
Merit: 1054


CPU Web Mining 🕸️ on webmining.io


View Profile WWW
May 13, 2015, 02:31:18 AM
 #7

Spots, is the Gorilla bucks wallet link above 4.0.2.0 or is it still the old one?

BUCKS 4.0.2 is updated on Github, but the wallet links are not ready yet. It will have 402 in the URL when it is built

Jaydubya91
Newbie
*
Offline Offline

Activity: 42
Merit: 0


View Profile
May 13, 2015, 02:32:58 AM
 #8

with 60,000 coins staking, doesnt that mean that only 50,000 are out and trade-able... wow...
iGotSpots (OP)
Legendary
*
Offline Offline

Activity: 2548
Merit: 1054


CPU Web Mining 🕸️ on webmining.io


View Profile WWW
May 13, 2015, 02:35:25 AM
 #9

with 60,000 coins staking, doesnt that mean that only 50,000 are out and trade-able... wow...

Less than 4000 TEETH are currently for sale at any price on Bittrex. You are talking about just the current network stake weight, not total number of coins

https://twitter.com/PurePoS/status/597997490458198016

If you compare the chart above and continue it with the one you see in the Qt now, that is a perfect looking graph

TomVelvetPaws
Hero Member
*****
Offline Offline

Activity: 616
Merit: 500


BTC=1GjeqWFLc4TBDg3bwdQk9ZWnEoNPCT9t6G


View Profile WWW
May 13, 2015, 02:48:16 AM
 #10

will def be staking this one as well.I will be adding to my collection.

  CRAVE Embrace the privacy movement    ◥
   Your Market. Your Blockchain Business. Your Profit.     ◥
brian_nguyen
Legendary
*
Offline Offline

Activity: 1404
Merit: 1001


View Profile
May 13, 2015, 03:30:26 AM
 #11

Consolidated thread for 'em coins. I like!
iGotSpots (OP)
Legendary
*
Offline Offline

Activity: 2548
Merit: 1054


CPU Web Mining 🕸️ on webmining.io


View Profile WWW
May 13, 2015, 03:35:31 AM
 #12

Consolidated thread for 'em coins. I like!

Yea, no reason to make everyone track four different threads when one decision affects pretty much everyone for all the coins. We test new things on all of these and keep a circle of improvement open. It's been working well. Each coin has a unique strategy that improves upon the previous update to one of the other coins. MMXIV will be next to get an update (long needed) after GorillaBucks 4.0.2 comes either tonight or tomorrow

ryanb
Legendary
*
Offline Offline

Activity: 1148
Merit: 1000



View Profile
May 13, 2015, 03:40:30 AM
 #13

Great, cannot wait for the Bucks Smiley

https://bitcoinfundingteam.com/ref/SatoshiTeam
turn 0.1 BTC to 80BTC week after week!!!
fonzerrellie
Legendary
*
Offline Offline

Activity: 1190
Merit: 1000

Kaspa


View Profile
May 13, 2015, 03:53:16 AM
 #14

yeah I really wish I could have afforded to get on the Gorilla bucks train, but it didn't work out for me... lol being laid off sucks

#Expanse $EXP 500 transactions 4 .1 EXP 1st Clone of ETH 
WAVES
qiwoman2
Legendary
*
Offline Offline

Activity: 2114
Merit: 1023


Oikos.cash | Decentralized Finance on Tron


View Profile
May 13, 2015, 04:20:18 AM
 #15

yeah I really wish I could have afforded to get on the Gorilla bucks train, but it didn't work out for me... lol being laid off sucks

Yes I wanted to get into Gorillabucks Sigh but was outta cahs.. but satill I got now over 650 MMXIV proudly staking and over 150 Gorilla TEETH..in staking too.. I waiting to collect a few more TEETH too.


█▀█ █ █▄▀ █▀█ █▀ ░ █▀▀ ▄▀█ █▀ █░█
█▄█ █ █░█ █▄█ ▄█ ▄ █▄▄ █▀█ ▄█ █▀█



DeFi on Tron
and trustless token exchange
█████











█████

██████████████████████████████████████████████████████

JOIN OIKOS

██████████████████████████████████████████████████████

█████
    █
    █
    █
    █
    █
    █
    █
    █
    █
    █
    █
█████
TRATILMNEVZAD
Full Member
***
Offline Offline

Activity: 157
Merit: 100


View Profile
May 13, 2015, 04:33:50 AM
 #16

<TRATILMNEWZAD> HI
<TRATILMNEWZAD> gone better nights, where percentage 5.5 % credited?
<TRATILMNEWZAD> 28hours
MMXIV COIN
iGotSpots (OP)
Legendary
*
Offline Offline

Activity: 2548
Merit: 1054


CPU Web Mining 🕸️ on webmining.io


View Profile WWW
May 13, 2015, 04:38:43 AM
 #17

<TRATILMNEWZAD> HI
<TRATILMNEWZAD> gone better nights, where percentage 5.5 % credited?
<TRATILMNEWZAD> 28hours
MMXIV COIN

5.5% is the daily average over the span of one year (reality is more like monthly)

TRATILMNEVZAD
Full Member
***
Offline Offline

Activity: 157
Merit: 100


View Profile
May 13, 2015, 04:41:14 AM
 #18

<TRATILMNEWZAD> HI
<TRATILMNEWZAD> gone better nights, where percentage 5.5 % credited?
<TRATILMNEWZAD> 28hours
MMXIV COIN

5.5% is the daily average over the span of one year (reality is more like monthly)
calculation time in month or year?
iGotSpots (OP)
Legendary
*
Offline Offline

Activity: 2548
Merit: 1054


CPU Web Mining 🕸️ on webmining.io


View Profile WWW
May 13, 2015, 04:42:44 AM
 #19

<TRATILMNEWZAD> HI
<TRATILMNEWZAD> gone better nights, where percentage 5.5 % credited?
<TRATILMNEWZAD> 28hours
MMXIV COIN

5.5% is the daily average over the span of one year (reality is more like monthly)
calculation time in month or year?

Depends what your personal vs network stake weight ratio is to determine how fast you will get to your average

TRATILMNEVZAD
Full Member
***
Offline Offline

Activity: 157
Merit: 100


View Profile
May 13, 2015, 04:46:10 AM
 #20

<TRATILMNEWZAD> HI
<TRATILMNEWZAD> gone better nights, where percentage 5.5 % credited?
<TRATILMNEWZAD> 28hours
MMXIV COIN

5.5% is the daily average over the span of one year (reality is more like monthly)
calculation time in month or year?

Depends what your personal vs network stake weight ratio is to determine how fast you will get to your average
in any time can overcharging ?
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 ... 154 »
  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!