Bitcoin Forum
August 10, 2024, 10:46:36 AM *
News: Latest Bitcoin Core release: 27.1 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 ... 145 146 147 148 149 150 151 152 153 154 155 156 157 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 ... 496 »
3881  Alternate cryptocurrencies / Service Announcements (Altcoins) / Re: Posting for new business transparency, site coming soon .... on: May 10, 2017, 05:08:02 AM
1) We have generated a chain of 10 million sha256 hashes, starting with a server secret that has been repeatedly fed the output of sha256 back into itself 10 million times. The sha256 of the final hash in the chain is: c56c9fe892bd23ff6d20da0b505c86db9acecb6a257a2b79b23dfface1d4ea75, by publicising it here we are preventing any ability to pick an alternate sha256 chain.


2) Parabolic will play through that chain of hashes, in reverse order, and use the hashes to determine the crash point in a probably fair manner.

3) To avoid criticism that the Bitcoin address used in step 1 was carefully chosen to generate lots of "bad" crash points, each hash in the chain will be salted with a client seed, which we have no control of. The client seed will be the block hash of a Bitcoin block that hasn't yet been mined: block 465525.


The reference code (javascript) is as follows:

The method to create the hash chain is simply sha256:
Code:
function genGameHash(serverSeed) {
  return crypto.createHash('sha256').update(serverSeed).digest('hex');
}

The method to convert a game hash, mix it with the picked client seed to a game multiplier:

Code:
function crashPointFromHash(serverSeed, clientSeed) {
  function divisible(hash, mod) {
    // We will read in 4 hex at a time, but the first chunk might be a bit smaller
    // So ABCDEFGHIJ should be chunked like  AB CDEF GHIJ
    var val = 0;
    
    var o = hash.length % 4;
    for (var i = o > 0 ? o - 4 : 0; i < hash.length; i += 4) {
      val = ((val << 16) + parseInt(hash.substring(i, i+4), 16)) % mod;
    }

    return val === 0;
  }

  var hash = crypto.createHmac('sha256', serverSeed).update(clientSeed).digest('hex');

  /* In 1 of 101 games the game crashes instantly. */
  if (divisible(hash, 101))
     return 0;

  /* Use the most significant 52-bit from the hash
     to calculate the crash point */
  var h = parseInt(hash.slice(0,52/4),16);
  var e = Math.pow(2,52);

  return Math.floor((100 * e - h) / (e - h));
}

The chain could be generated with code such as:

Code:
var serverSecret =  'If you knew this, you could steal all my money';
var clientSeed = '0000examplehash';

var gamesToGenerate = 1e7;

var serverSeed = serverSecret;

for (var game = gamesToGenerate; game > 0; --game) {
  serverSeed = genGameHash(serverSeed);
  console.log('Game ' +  game + ' has a crash point of ' + (crashPointFromHash(serverSeed, clientSeed) / 100).toFixed(2) +'x', '\t\tHash: ' + serverSeed);
}

var terminatingHash = genGameHash(serverSeed);

console.log('The terminating hash is: ', terminatingHash);


Using our chosen starting serverSeed, the hash terminating the chain is c56c9fe892bd23ff6d20da0b505c86db9acecb6a257a2b79b23dfface1d4ea75. That is to say, the first game's hash played under the new provably fair scheme, when hashed will be c56c9fe892bd23ff6d20da0b505c86db9acecb6a257a2b79b23dfface1d4ea75.

3882  Alternate cryptocurrencies / Announcements (Altcoins) / Re: Janus [JNS] Blockchain secured global business NXT - Ardor on: May 09, 2017, 03:10:53 PM
Total supply in the ANN says 25 million. However, in this link https://www.mynxt.info/assets/  available supply is more than 97 million Janus. Please explain!

That just has to be updated by the NXT platform, the tokens have been burnt as is no fault of JANUS TEAM that the asset exchange hasn't updated. Everywhere else has been updated as far as i know and there are only just over 25 million tokens now. This is the most transparent DEV Team I ever have met so you don't have to doubt them, that's for sure. If you have any doubts whatsoever go into the slack and ask the JANUS TEAM anything you like, don't just take my word for it. They are always available to answer questions when they have a time spare as they work very hard.
3883  Alternate cryptocurrencies / Tokens (Altcoins) / Re: TaaS — Tokenized Closed-End Fund on: May 09, 2017, 03:06:28 PM
If the DEV Team are more active in Telegram then we should all go there for updates but of course it will be nice to always post here on BTCTALK general main updates as we investors did come in through BTCTALK..I am sure they are busy trying to get everything sorted.
3884  Alternate cryptocurrencies / Announcements (Altcoins) / Re: QIBUCK TOKEN ASSET - PRE-ANN (Replacing QIBUCK COIN) on: May 09, 2017, 03:01:45 PM
I am at my Mother's for a few days till Friday but managed to transfer all assets and 5 bursts to all outstanding till date emails..
Also I was lucky enough to pick up some really cheap EDGE78 Assets.. for us so I gobbled them up and will upload all these entries on asset and expenses sheets on my return..  Smiley.. We also received dividends from haitch, edge78 and burstocean  Will be purchasing more assets on my return..  Smiley  I also traded JANUS token a bit so with my profit I made trading will use 50% of my profit to buy some JANUS for QBK.. this is a small gift from me.. I will add it it as a donation.. so got lots of accounting to do when I get back..  Smiley
3885  Alternate cryptocurrencies / Marketplace (Altcoins) / Re: EDGE78 ASSET ON BURST COIN Asset Exchange - NEW THREAD on: May 09, 2017, 02:58:26 PM
I just saw you posted some nicely priced cheap assets..just as I was putting in a buy order for my QBK asset..so I bought them to grow QBK..  I am happy how things are going here.. hope to get more soon..  Smiley
3886  Bitcoin / Bitcoin Discussion / Re: 7.5 Billion People / 21 Million Bitcoin = 1 Bitcoin For Every 357 People on: May 09, 2017, 05:35:21 AM
There are a few billion people on this planet that have no access to education, food or water so although it averages out like you say, in reality things are very very different. I do believe though the gap will narrow as more people begin to have access to technology, like mobile devices in developing countries. This may  bring more and more people to Bitcoin than previously anticipated.
3887  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [LNK] [309 BTC RAISED] Ethereum.link | Flexible Market Connector | ICO started on: May 09, 2017, 05:01:13 AM
My Husband really liked this TOKEN and bought some yesterday. I also will buy some as I made an incy bit of profit trading yesterday. Do I need to open my own ICO account or can he buy on my behalf? We both have separate ETH addresses so that isn't an issue. We just want to do things properly that's all. I will be back in three days, but have access to Twitter and here with limited internet access.  Smiley
3888  Alternate cryptocurrencies / Announcements (Altcoins) / Re: Janus [JNS] Blockchain secured global business NXT - Ardor on: May 09, 2017, 04:47:55 AM
Everyone involved in JANUS should pop into the slack at least every few days..so much going on right now and more exciting stuff happening. I don't want to spill the beans, want to let the MANAGEMENT do that but JANUS holders will be pretty pleased with the latest developments at hand.
3889  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [ETC] Ethereum Classic: Immutable Smart Contracts on: May 09, 2017, 04:30:39 AM
Is this a good time t buy more ETC? I see there is a big correction and also any reason for the sudden downturn or is it just profit taking because of the btc price surge? I have been trying slowly to accumulate ETC but last lot I bought it was @ 46
3890  Alternate cryptocurrencies / Announcements (Altcoins) / Re: QIBUCK TOKEN ASSET - PRE-ANN (Replacing QIBUCK COIN) on: May 09, 2017, 04:13:11 AM
I will be taking my Mother back to the village today so will be back Friday..I don't have access to wallets there and my internet access will be limited so when I come back Friday, will resume QBK work.. I will need then to update both asset sheet and Income and expense sheet and purchase a few more assets for the Asset as I will buy asset direct from the Issue.. to help grow the asset..I have been placing buy orders as well whenever I receive personal burst dividends..
3891  Alternate cryptocurrencies / Marketplace (Altcoins) / Re: [LNK]Ethereum.link Twitter Campaign(NEW) on: May 08, 2017, 03:50:30 PM
Recent Twitter audit: https://www.twitteraudit.com/goldentags
Twitter account: https://twitter.com/goldentags
Forum Name: qiwoman2
Followers: 3051
Ethereum Address (Wallet Address, DO NOT USE A EXCHANGE ADDRESS):0xF50C77D47EE9474Bdb453B486204A4FF79103C24
Round 2:
Retweet links:
1. https://twitter.com/linkplatform/status/860701724436295681
2. https://twitter.com/linkplatform/status/860699535584235520
3. https://twitter.com/linkplatform/status/860965537530228738
4. https://twitter.com/linkplatform/status/859895291184463873
5. https://twitter.com/linkplatform/status/859874111794814976
6. https://twitter.com/linkplatform/status/861674749549830144
7. https://twitter.com/linkplatform/status/861787159736467456
8. https://twitter.com/linkplatform/status/862118368328941569
9. https://twitter.com/linkplatform/status/862121693497741314


Tweet Links:
1. https://twitter.com/goldentags/status/861608875753123840
2. https://twitter.com/goldentags/status/862539685972848641
3. https://twitter.com/goldentags/status/862580582303354880
4. https://twitter.com/goldentags/status/863291349558337536
5. https://twitter.com/linkplatform/status/864338872162844672

Round 3:
Retweet Links:
1. https://twitter.com/linkplatform/status/863526410476027904
2. https://twitter.com/linkplatform/status/863214381970071552
3. https://twitter.com/linkplatform/status/863973684599562240
4. https://twitter.com/linkplatform/status/864783843999571968
5. https://twitter.com/linkplatform/status/864828712688201730
6. https://twitter.com/linkplatform/status/864969880583503872
7. https://twitter.com/CryptoCoinsNews/status/864542932602408960
8. https://twitter.com/AntonMusica/status/864077787723948032
9. https://twitter.com/TechviberNG/status/864180262120435713
10. https://twitter.com/linkplatform/status/865467764466634757
11. https://twitter.com/linkplatform/status/865765034428964864
12. https://twitter.com/cryptotrader85/status/865715466878074884
13. https://twitter.com/USBitcoinServcs/status/865414957621313539
14. https://twitter.com/ShodikMubarok/status/865236000527728640
15.

Tweets Links:
1. https://twitter.com/goldentags/status/864063480613277696
2. https://twitter.com/goldentags/status/865089603488886784


ROUND 4


Retweet links:
1. https://twitter.com/linkplatform/status/862165013812973568
2. https://twitter.com/linkplatform/status/862388837775003648
3. https://twitter.com/linkplatform/status/862467957447954432
4. https://twitter.com/linkplatform/status/862697254238404608
5. https://twitter.com/linkplatform/status/863173526122975232
6. https://twitter.com/linkplatform/status/863214381970071552
7. https://twitter.com/linkplatform/status/866027237090500608
8. https://twitter.com/ICOcheck/status/866374825077506054
9. https://twitter.com/themoonparadigm/status/866203447846195205
10. https://twitter.com/AntonMusica/status/864798282907779073
11. https://twitter.com/linkplatform/status/866510617464651776
12. https://twitter.com/CryptoCoinsNews/status/866904043209281536
13. https://twitter.com/linkplatform/status/867080705737580544
14. https://twitter.com/AntonMusica/status/866941904310632448
15. https://twitter.com/USBitcoinServcs/status/866876215831011328
16. https://twitter.com/Eye4bd/status/867144348453842944
17. https://twitter.com/linkplatform/status/867234294879711232
18. https://twitter.com/AntonMusica/status/867691048239329280
19. https://twitter.com/linkplatform/status/867976952837046273

Tweet links:
1. https://twitter.com/goldentags/status/865915312549625856
2. https://twitter.com/goldentags/status/866303720778330115
3. https://twitter.com/goldentags/status/866622807253409792


ROUND 5

Tweet links:

1. https://twitter.com/goldentags/status/868727015087759360

Retweet links:

1. https://twitter.com/linkplatform/status/868245525199540224
2. https://twitter.com/linkplatform/status/869433919384506368
3.
3892  Economy / Economics / Re: African country adopts Bitcoin as primary currency on: May 08, 2017, 03:10:59 PM
Liberland wants to adopt Bitcoin as it's legitimate currency,so why not other countries ADOPT it also? It may be more realistic for each country, whether African or from another continent, to create it's own DIGITAL parallel currency, to run alongside FIAT, OR to replace it completely..This is more viable I think personally than to use Bitcoin as a national currency. Maybe African countries are looking to the blockchain for solutions, but mightcarve out their own unique altcoin or crypto token and not necessarily adopt Bitcoin as their national currency.
3893  Economy / Economics / Re: Bitcoin price is recovering! on: May 08, 2017, 03:03:14 PM
Bitcoin is here to stay and as the price slowly steadily rises, more and more mainstream businesses and lay people will be accepting Bitcoin as a part of their every day life in some form or another. I see so many new people coming into Bitcoin daily, buying it for long term storage or wanting to earn an income from it, than say a few years ago where most people saw it as some basement nerdy type of contraption. I see the price of Bitcoin now just slowly and steadily going on the uptrend for a few years to come.
3894  Economy / Economics / Re: On what year crypto in general will be massively adopted? on: May 08, 2017, 02:58:16 PM
I believe within the next ten years, if we don't have any major world wars, we might see Bitcoin adoption being taken to the next level. Now it is getting more and more popular as a store of wealth as more financial institutions and governments look to the blockchain for problem solving, transparency and further wealth creation. I have noticed that most of my friends on Facebook now all know or are using Bitcoin as opposed to five years ago when only few of us were talking about it.
3895  Economy / Economics / Re: If Bitcoin had a stable price, would it still be as popular? on: May 08, 2017, 02:25:09 PM
Interest would be higher in the Consumer Industry as opposed to the store of wealth side. Now speculators, traders and savers adore bitcoin because of the dream of becoming rich one day satisfies their curiosity. It Bitcoin prices were stable then the interest would switch more to merchants and consumers.
3896  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] INSANE COIN 🔷 Pure POS 2% 🔷 18.4m Coins 🔷 Master Nodes May 5th,2017 on: May 08, 2017, 12:21:56 PM
*****************************


INSN version  1.0.2.0 is out


This version of INSN will supersede any previous versions


https://mega.nz/#!7kMhzZqT!Z3Wf3Nnjq7aM7crMrR6Q1SRw1oF-7jF_FylYwiMQzkw


Nova is working to get everything working on their end and we should be back up and running shortly




*****************************

This is great news, so I can download this and request a withdrawal from NOVA to download my INSNS then we can setup the masternodes? I would love to get my Masternodes running. It will be awesome..  Smiley
3897  Bitcoin / Bitcoin Discussion / Re: Macron supporting bitcoin? what does it mean for us? on: May 08, 2017, 12:02:32 PM
MACRON is young and because of his age, this might mean something good for Bitcoin and Alts in general. Many banks now are looking to the blockchain as a new technology so he might be open to perhaps giving Bitcoin startups and Incubators a nice tax break, easier entry laws etc.. So being more business oriented as a personality, Macron may Give Bitcoin a head start, just form a different angle than most would expect.
3898  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [SUMO] SUMOKOIN - 🔏 Digital Cash For High-Confidential Transactions 🔏 on: May 08, 2017, 11:57:45 AM
Are there any community activities regarding this coin for those of us that don't mine and but want to get involved in some level? If there are any promotional activities, I would be very interested to participate.
3899  Alternate cryptocurrencies / Announcements (Altcoins) / Re: Janus [JNS] Blockchain secured global business NXT - Ardor on: May 07, 2017, 07:54:12 PM
Janus price and development is getting some real development

There's no issue for janus to reach $1 soon, soon i mean real soon

Only ~25Million in existance

Even $1 we are just at $25 Million

Hitting a $4 will result $100 Million

Exactly! Someone in the post above called me an idiot because I have invested in a TOKEN that gives me dividends every month, has an excellent development team and community, is producing results even faster than anticipated and is growing in real intrinsic value. I like to be such an IDIOT lol.. Either the guy that called me an idiot doesn't understand much English Humor or is not happy to see others make good choices.  Grin
3900  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] INSANE COIN 🔷 Pure POS 2% 🔷 18.4m Coins 🔷 Master Nodes May 5th,2017 on: May 07, 2017, 07:22:29 PM
hmmm,very dangerous situation...maybe insane goes to crash slowly Huh

Panic more!  Grin



Have you all read the last few pages of improvements and that there is a coin swap going on? FOR INSANE to have all the new enhancements a new chain has to be created and INSANE is being swapped on NOVA FOR INSN. You all have 3 months to swap your coins for the new INSANE VERSION. Please read the previous pages for the latest enhancements before creating FUD and PANIC amongst yourselves and misinforming others with incorrect information. There are a lot of good things to follow for those who are steadfast and patient.
Pages: « 1 ... 145 146 147 148 149 150 151 152 153 154 155 156 157 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 ... 496 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!