Gamecoin

Gamecoin specifications

2.5 minute block targets
12 blocks (~30 minutes) to retarget difficulty
subsidy halves every 840,000 blocks (~4 years)
~1.67 billion total coins
1000 coins per block
Scrypt based

Windows - QT wallet
shakezula has kindly compiled a Windows QT wallet and you can download it here. (Select File -> Download from the menu or press Ctrl+S)

If you want to show your appreciation to shakezula, please consider sending a donation to his GameCoin address:

GKB92PMX7ZGJFJY7k3s8rQL9X7Gzk1YRVW

Windows - Daemon

If you’d like a simple Windows Daemon (command line), you can download it here.

Mac OS X - QT wallet

Here is the current wallet courtesy of maxpower.

If you want to show your appreciation to maxpower, please consider sending a donation to his GameCoin address: GYmHJ871jnynvoyjiZhcjC5bbdJGYxide5

Source Code

The current source code for self compiles can be downloaded from GitHub.

GameCoin Pool

http://coin-base.org/game/

1% POOL FEE

Payoutsystem prop

only 120 confirms

Stratum+LP

  1. Create account.
    • Register here, or login if you already have account
    • Create a worker that will be used by the miner to login
  2. Download a CPU miner.
    • Windows users: download a “batteries” included package for 64-bit or 32-bit Windows. These packages include Pooler’s cpuminer 2.1.2 and Matoking’s GUI r6, updated 2012-02-03.
      Extract the files into a folder and start the included ScryptMiner.
      If you don’t want a graphical user interface, you can download an optimized command-line miner here.
    • Linux users: download and compile cpuminer. Under Debian and Ubuntu, you can use the following recipe:
        sudo apt-get install make automake build-essential git libcurl4-openssl-dev
        git clone git://github.com/pooler/cpuminer.git
        cd cpuminer
        ./autogen.sh
        ./configure CFLAGS="-O3"
        make
      [for HTTP]    ./minerd --url http://coin-base.org:8428/ --userpass Weblogin.Worker:Worker password
      [for STRATUM] ./minerd --url stratum+tcp://coin-base.org:3428/ --userpass Weblogin.Worker:Worker password
    • Mac OS X users: precompiled binaries are available here.
  3. Download a GPU miner.
  4. Configure your miner.
    Start your miner using the following parameters:

    URL: http://coin-base.org/
    HTTP PORT: 8428
    STRATUM PORT: 3428
    Username: Weblogin.Worker
    Password: Worker Password

    If you use a command-line miner, type:

    [for HTTP]    ./minerd --url http://coin-base.org:8428/ --userpass Weblogin.Worker:Worker password
    [for STRATUM] ./minerd --url stratum+tcp://coin-base.org:3428/ --userpass Weblogin.Worker:Worker password

    If you want, you can create additional workers with usernames and passwords of your choice Here

  5. Create a gamecoin address to recieve payments.
    • Downloading the gamecoin client from the forum site
      . Generate a new address and input it on your account page to receive payments.
  6. Optional (linux): Keeping miner updated
    • Updateting manual:
            cd cpuminer
            git pull
            make clean
            ./configure CFLAGS="-O3"
            make
      [for HTTP]    ./minerd --url http://coin-base.org:8428/ --userpass Weblogin.Worker:Worker Password
      [for STRATUM] ./minerd --url stratum+tcp://coin-base.org:3428/ --userpass Weblogin.Worker:Worker password