Bitcoin Forum
July 30, 2024, 09:32:26 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 ... 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 [208] 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 ... 513 »
4141  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Maieuticoin | 2014% PoS | 10k/MMXIV and BALLS/MMXIV Markets NOW OPEN on: May 13, 2015, 02:22:51 AM
Please use this thread for all further discussion: https://bitcointalk.org/index.php?topic=1059159
4142  Alternate cryptocurrencies / Announcements (Altcoins) / 🚀🚀🚀🚀 | GorillaBucks | Custom Multipool LIVE | Social Media Network | 💵🐵💵 on: May 13, 2015, 02:22:19 AM





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



















4143  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] GorillaTeeth [TEETH] | 10 DAY Staking Confirmation | Good luck dumping it! on: May 13, 2015, 12:25:35 AM
@pjcltd
@iGotSpots
Maybe a good idea to start a separate thread for Gorilla Exchange ?

I might as well just make one thread for all 3 coins, GorillaStake, and the exchange..
4144  Alternate cryptocurrencies / Altcoin Discussion / Re: Halving does not equal price increases (do your homework kids) on: May 12, 2015, 11:01:54 PM
I agree with Spots and now I am curious what you were doin' with the moon-men ? hmmm ?

I was there for this launch: http://www.gorillastake.com/CRS6.html helping spread the word for them with social media. There was a lot of down time which which I got to speak with the mainstream media, as well. We all basically had the same access, but rode different buses. I was also at all the press conferences for it that streamed live and on NASA-TV. Very smart people, very welcoming atmosphere. If you're interested, come to IRC #MMXIV on Freenode, I have a ton of pictures
4145  Alternate cryptocurrencies / Altcoin Discussion / Re: This is your last chance to jump on the Doge train before it explodes on: May 12, 2015, 08:10:56 PM
When I was at NASA, I was talking to a few media staff from big agencies once word got around I knew about Bitcoin. While Doge was a common theme, it was nothing more than a bad joke to people with real money

The entire market cap of digital currencies has shriveled in terms of real world wealth. While a lot of that is being taken out by short sighted project like Doge, the real world, big boy money is on the 99% of digital development that is done off these forums

Bitcointalk, and what is popular here, is just the chum left over after the sharks are full. Even the most popular coins on these forums are nothing but scraps and a test for others to save money on R&D. We are all basically working for free and hoping our idea or plan to scale is the best

The time for jokes and in-fighting has passed and now the smart people have become a lot more serious
4146  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][ECASH] New Official Thread - New Wallet Released on: May 12, 2015, 07:29:12 PM
I do not understand why I am negative staking.

Since last night I have negative staked about 6 billion coins. 6 billion coins! Gone. They aren't being sent anywhere, just mint by stakes of a negative amount.

I have tried different boot straps, commands & reinstallations to no avail.

Does anyone else have any problems like this? Or has anyone receive about 6 billion coins by staking since last night, that has been out of the ordinary?

I am turning this off before I lose all my coins.

Hi mate, i told you to check for malware etc blah blah blah, and rescans etc, as i was thinking the problem was definitely on your end somewhere.

But last night a dj saved my life, err sorry last night the same thing happened to me  Huh



Not sent any out at all, very strange, is anyone else having this happen?

And another   Huh



The negatives are just showing the size of the input that staked
4147  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] GorillaTeeth [TEETH] | Merged Blockchain of 10k and BALLS | GorillaEx Soon on: May 12, 2015, 06:50:58 PM
i try send my TEETH from C-cex to bittrex but im not see my transaction in block explore
and my adress not see in network

hlep me >_<

this is my Tx id 70925d803fa26e771113e112b3d53f865673daced63d4a5b0a96132fb14e4511
and this is my deposit adress from bitrex GJHyhyAsXeW8ZXhttQW3x9hsSsfFY1VmMn
hello please help me
why my adress not seen in network ?

That means the transaction has not been broadcast to the network. Open a ticket with the place you sent it from

Right, TX does not get confirmations
Here is gettransaction output:

{"result":{"amount":-25.14906500,"fee":-1.00000000,"confirmations":0,"txid":"70925d803fa26e771113e112b3d53f865673daced63d4a5b0a96132fb14e4511","time":1431398986,"details":[{"account":"","address":"GJHyhyAsXeW8ZXhttQW3x9hsSsfFY1VmMn","category":"send","amount":-25.14906500,"fee":-1.00000000}]},"error":null,"id":null}

Just tried to rebroadcast with getrawtransaction / sendrawtransaction but first method is not implemented in wallet. Why? {"result":null,"error":{"code":-32601,"message":"Method not found"},"id":null}

repairwallet should return them to balance
4148  Alternate cryptocurrencies / Announcements (Altcoins) / Re: กิิ               GorillaBucks                       No Mining               กิิ on: May 12, 2015, 06:35:02 PM
About 10 hours left to get in. I will be posting 4.0.2 today, which will be a mandatory upgrade before block 25,000
4149  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Maieuticoin | 2014% PoS | 10k/MMXIV and BALLS/MMXIV Markets NOW OPEN on: May 12, 2015, 06:15:20 PM
Guys, call me a total noob, as i might be, i just got into staking, but where the hell can i find the wallet? There's no link in OP and their website displays a host message.
While i'm at it, they've got coin age right?

It's definitely in the OP and on GorillaStake - Yes, we use coinage
My bad. Was using spotlight didn't see it at first.

You are correct that we don't use mmxivcoin.com anymore though. I should update links
4150  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Maieuticoin | 2014% PoS | 10k/MMXIV and BALLS/MMXIV Markets NOW OPEN on: May 12, 2015, 06:09:15 PM
Guys, call me a total noob, as i might be, i just got into staking, but where the hell can i find the wallet? There's no link in OP and their website displays a host message.
While i'm at it, they've got coin age right?

It's definitely in the OP and on GorillaStake - Yes, we use coinage
4151  Alternate cryptocurrencies / Announcements (Altcoins) / Re:                   No Mining               กิิ on: May 12, 2015, 07:01:10 AM
OUT!

This looks like a scam!

Be careful everyone.

I agree with two sentences of this post. Guess which ones?
4152  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] GorillaTeeth [TEETH] | 10 DAY Staking Confirmation | Good luck dumping it! on: May 12, 2015, 06:20:34 AM
i can NOT figure this "reservebalance" thing. id like to not stake all my coins when they come into the wallet...

https://drive.google.com/file/d/0B9tCHKMNZjyYTVdYNXNSVkhDR2s

Close client, put that in Roaming/TEETH as TEETH.conf and enter the amount you want to not stake, then open the client. Takes two seconds

Then when the client is running, you can type reservebalance in the debug window to see if it is returning as true
4153  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] GorillaTeeth [TEETH] | 10 DAY Staking Confirmation | Good luck dumping it! on: May 12, 2015, 05:30:24 AM
 


This is a terrific indicator of an extremely strong network
4154  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] GorillaTeeth [TEETH] | Merged Blockchain of 10k and BALLS | GorillaEx Soon on: May 12, 2015, 05:27:04 AM
i try send my TEETH from C-cex to bittrex but im not see my transaction in block explore
and my adress not see in network

hlep me >_<

this is my Tx id 70925d803fa26e771113e112b3d53f865673daced63d4a5b0a96132fb14e4511
and this is my deposit adress from bitrex GJHyhyAsXeW8ZXhttQW3x9hsSsfFY1VmMn
hello please help me
why my adress not seen in network ?

That means the transaction has not been broadcast to the network. Open a ticket with the place you sent it from
4155  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Maieuticoin | 2014% PoS | 10k/MMXIV and BALLS/MMXIV Markets NOW OPEN on: May 12, 2015, 04:46:52 AM
Threw up a bootstrap if anyone wants to give it a try

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

This link is valid, was on the wrong account editing the OP, but this is safe
4156  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] GorillaTeeth [TEETH] | Merged Blockchain of 10k and BALLS | GorillaEx Soon on: May 12, 2015, 02:58:48 AM
Stake weight graph is finally starting to rise nicely
4157  Alternate cryptocurrencies / Announcements (Altcoins) / Re: กิิ               GorillaBucks                       No Mining               กิิ on: May 12, 2015, 02:29:43 AM
About 26 hours left
4158  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] GorillaTeeth [TEETH] | Merged Blockchain of 10k and BALLS | GorillaEx Soon on: May 12, 2015, 02:06:03 AM
I've been giving away TEETH in little chunks on cc-ex... just to remind people thats theres better coins to get onboard with the scammy ICO and newb coins  Cool

Appreciate it
4159  Alternate cryptocurrencies / Announcements (Altcoins) / Re: กิิ               GorillaBucks                       No Mining               กิิ on: May 11, 2015, 09:55:17 PM
Okay - Question - 3 Gorilla Stake private keys
          that come loaded with 100 Gorilla Bucks.
          Do I enter each private key in the same
          Gorilla BUcks wallet?
Thanks in advance for an answer to come.


Yes, or you can stack all of them onto one address
4160  Alternate cryptocurrencies / Altcoin Discussion / Re: Cost and time frame for switching a coin from POW to POS on: May 11, 2015, 06:04:39 PM
Swap chains; not worth the time trying to Frankenstein it
Pages: « 1 ... 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 [208] 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 ... 513 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!