Bitcoin Forum
June 23, 2024, 08:13:38 AM *
News: Voting for pizza day contest
 
  Home Help Search Login Register More  
  Show Posts
Pages: [1]
1  Economy / Gambling discussion / Re: EthChase.io - Provably Fair Seeding Event on: August 22, 2018, 08:35:31 AM
Here is an archive of this page as proof that it will not be edited: https://web.archive.org/web/20180822083048/https://bitcointalk.org/index.php?topic=4937001.0
2  Alternate cryptocurrencies / Service Announcements (Altcoins) / EthChase.io - The trusted Ethereum crash game on: August 22, 2018, 08:28:21 AM
EthChase.io
➡️ The trusted Ethereum crash game ⬅️

EthChase.io is a clone of the extremely popular bitcoin game Bustabit.
While the rules and math are exactly the same, EthChase is built to be played with Ethereum.
This gives you much lower transaction fees, confirmation times, and the ability to play almost instantly!

Provably Fair Seeding Event: https://bitcointalk.org/index.php?topic=4937001

How to Play?

Place a bet. Watch the multiplier increase from 1x upwards! Cash out any time to get your bet multiplied by that multiplier. But be careful because the game can crash at any time.

What is one "Szabo"?

Szabo is a millionth of one Ether.

How do I deposit ethereum?

Send Ether to the deposit address on your account page! If you don't have any Ethereum, but do have other cryptos you use Shapeshift.io, Changelly or coinswitch.co.
3  Economy / Gambling discussion / EthChase.io - Provably Fair Seeding Event on: August 22, 2018, 08:22:19 AM
Welcome to the EthChase.io Provably Fair Seeding Event!

EthChase is a licensed clone of the popular bitcoin game Bustabit, and is played with Ethereum.

This will reuse the idea posted by Ryan and used for Bustabit v1.
   
  • A chain of 10 million (1e7) sha256 hashes was generated, starting with a Server Secret that has been repeatedly fed the output of sha256 hash back into itself 10 million times.
        The final hash in the chain is: 6b811a0f7816f610564cd3738ad72e5007bd6161efaaac4ac5a6dd316a0cbaa8, by publicizing it here we are preventing any ability to pick an alternate sha256 chain.
  • EthChase.io will play through that chain of hashes, in reverse order, and use the hashes to determine the crash point.
  • To avoid criticism that the Server Secret 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 an Ethereum block that hasn't yet been mined: block 6200000

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 money pot 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 6b811a0f7816f610564cd3738ad72e5007bd6161efaaac4ac5a6dd316a0cbaa8. That is to say, the first game's hash played under the new provably fair scheme, when hashed will be 6b811a0f7816f610564cd3738ad72e5007bd6161efaaac4ac5a6dd316a0cbaa8.
4  Bitcoin / Mining support / Re: BITMAIN Antminer S3 support and OverClocking thread on: December 19, 2014, 06:35:18 PM
alias: -l not found
root@AntMinerS3:~# /usr/lib/lua/luci/model/cbi/cgminer/cgminer.lua
-ash: /usr/lib/lua/luci/model/cbi/cgminer/cgminer.lua: Permission denied
root@AntMinerS3:~#

So how can i add more of those frequencies?

try
vi  /usr/lib/lua/luci/model/cbi/cgminer/cgminer.lua


 
5  Bitcoin / Mining support / Re: BITMAIN Antminer S3 support and OverClocking thread on: November 29, 2014, 09:52:16 PM
I recently upgraded my s3's firmware what is with the new voltage setting underneath the freq setting? I run mine at 250mhz and have been doing so for 3mos now without a issue. What can this new voltage setting do can it give me more speed? I rn the on Corsair HX1000 PSU's So i got watts to spare Smiley

+1

same questions here https://bitcointalk.org/index.php?topic=771979.msg9608517#msg9608517
but other direction... Smiley

it seems the voltage changes are not really applying at least downwards...

i answered the voltage question on the previous page of this thread
6  Bitcoin / Mining support / Re: BITMAIN Antminer S3 support and OverClocking thread on: November 20, 2014, 09:40:11 PM
Have you changed the IP address to DHCP?
7  Bitcoin / Mining support / Re: BITMAIN Antminer S3 support and OverClocking thread on: November 20, 2014, 09:15:34 PM
Just got a new S3 and have no idea how to get it mining.  I put in my pool information, connected miner to my router and it doesn't mine.  Any ideas what to do next?

you want this
https://bitcointalk.org/index.php?topic=702653.0
8  Bitcoin / Mining support / Re: BITMAIN Antminer S3 support and OverClocking thread on: November 20, 2014, 06:36:40 PM
===VOLTAGE SETTINGS===

The Very first post in this thread contains the following
Quote
I have tried 275MHz and 300MHz, and were no-go since the chip voltage in the S3 is set at 0.784V.

Since we can now mess with voltage, the question is how do we set it?

well lets take some things into consideration.

#1 Raising your voltage beyond safe limits can quickly damage your equipment, so this is the most finicky and potentially dangerous part of the overclocking process.

Now there is a WONDERFUL piece of info about our chips here
https://www.bitmaintech.com/files/download/BM1382_Datasheet_v3.0.pdf

That gives us some clues as to how to set the voltage.

Since .784 volts is the default and the chart shows no gain in GHS over .80 then .80 would seem to be the logical step up.
 that will raise out Watts per GH to 0.702.

Now lets look at frequency.

at 275 the GHS is 17.33 (just like the chart shows for .80 volts) so we can surmise that to overclock to 275 mhz we would need at least 0.80 volts

The paper also shows that the MAX recommended operating voltage is 1.1 (dont go there)

I am not making suggestions as to what you should do. I have not tested this myself. Based on the information available i think that 0.80 volts at 275 mhz SHOULD work (if you can keep it cool)


To add the frequency you will add this to /etc/config/asic-freq
Code:
config 'asic-freq' 'default'

        option 'freq_value'    '0a82'  #275M
        option 'chip_freq'     '275'
        option 'timeout'       '15'

        option 'freq_value'    '0982'  #250M
        option 'chip_freq'     '250'
        option 'timeout'       '16'

        #option 'freq_value'    '1286'  #237.5M
        #option 'chip_freq'     '237.5'
        #option 'timeout'       '17'

        #option 'freq_value'    '0882'  #225M
        #option 'chip_freq'     '225'
        #option 'timeout'       '18'

        #option 'freq_value'    '1106'  #218.75M
        #option 'chip_freq'     '218.75'
        #option 'timeout'       '18'
9  Bitcoin / Mining software (miners) / Re: cgminer extranonce.subscribe extension - beta testers needed on: November 20, 2014, 03:31:06 PM
OK so a few things i have noticed.
the drop in cgminer replacement works for antminers but the antminer section of the status screen id basically blank.

I know this is because the antminer driver is not compiled into to the cgminer binary

there is a patched version of the antminer software here
https://github.com/FireWalkerX/cgminer-bmsc

can someone please cross compile it for the beaglebone board and post a binary.

I do not have the experience required to do that

----------------------------------------------------------
UPDATE
If you use the newest BitMain firmware that contains cgminer 4.6 and then drop in the 4.7 replacement, all antminer status reports sections work properly.

Pages: [1]
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!