Bitcoin Forum
May 10, 2024, 09:15:56 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 »
  Print  
Author Topic: [ANN] New Crypto Currency - GameCoin (GME)  (Read 54261 times)
JimmyFL
Member
**
Offline Offline

Activity: 84
Merit: 10



View Profile
May 12, 2013, 07:53:30 PM
Last edit: May 12, 2013, 09:26:21 PM by JimmyFL
 #381

gamecoin and feathercoin blockchains are identical up to block 6634. Nice pre-mine there waiting for feathercoin early adopters.

Code:
gamecoind importprivkey `feathercoind exportprivkey <ftcaddress>`

Are you sure? I'm getting

{"code":-5,"message":"Invalid private key"}

And the same error when I try to import the GME private key to FTC.

And btw it's dumpprivkey and not exportprivkey Wink






You're right. The privkey has to be converted for the gamecoin network and the checksum recalculated. Here is the python code to do it:

Code:
#!/usr/bin/env python

from base58 import b58encode,b58decode
import struct

import sys
import hashlib

wif = sys.argv[1]

raw = b58decode(wif, None)

net,key,x,checksum = struct.unpack('>B32sB4s', raw)
check = hashlib.sha256(hashlib.sha256(raw[:34]).digest()).digest()[:4]

try:
    assert(check == checksum)
    assert(net == 142)
    net = 166
    gamecoin = struct.pack('>B32sB', net, key, x)
    gamecoin_checksum = hashlib.sha256(hashlib.sha256(gamecoin).digest()).digest()[:4]
    print b58encode(gamecoin+gamecoin_checksum)

except AssertionError:
    print "Invalid feathercoin private key"

Use with base58.py from https://github.com/imsaguy/python-base58/blob/master/base58.py

Code:
al@al-desktop:~/Source/python-base58$ feathercoind getnewaddress
6otbuYbmLNPRrxS9i8DPQAgg4oAAEwrpE6
al@al-desktop:~/Source/python-base58$ feathercoind dumpprivkey 6otbuYbmLNPRrxS9i8DPQAgg4oAAEwrpE6
N99NrWCpbBRwa2ZnWgVQkWkgkmAvLgtY4qde6vFWxFKAcmKSXaxA
al@al-desktop:~/Source/python-base58$ ./chnet.py N99NrWCpbBRwa2ZnWgVQkWkgkmAvLgtY4qde6vFWxFKAcmKSXaxA
Rh4WaNrQnsRExStDnVxqrh2NjBzaNjPyySamXpZnjjQFNi57yDLi
al@al-desktop:~/Source/python-base58$ gamecoind importprivkey Rh4WaNrQnsRExStDnVxqrh2NjBzaNjPyySamXpZnjjQFNi57yDLi
al@al-desktop:~/Source/python-base58$

I'm a noob in cryptocurrencies, are you telling that this new coin is a total crap and if someone mined a lot of FTC can convert them 1-1 with new gamecoins?

Only if you was solo mining before the block 6xxx
1715375756
Hero Member
*
Offline Offline

Posts: 1715375756

View Profile Personal Message (Offline)

Ignore
1715375756
Reply with quote  #2

1715375756
Report to moderator
1715375756
Hero Member
*
Offline Offline

Posts: 1715375756

View Profile Personal Message (Offline)

Ignore
1715375756
Reply with quote  #2

1715375756
Report to moderator
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
ali1234
Newbie
*
Offline Offline

Activity: 10
Merit: 0


View Profile
May 12, 2013, 07:57:33 PM
 #382

I'm a noob in cryptocurrencies, are you telling that this new coin is a total crap and if someone mined a lot of FTC can convert them 1-1 with new gamecoins?

Yes, 1.3 million of them, assuming it works. Anyone tried it? I don't have any old feathercoins to test it with.
serge79
Full Member
***
Offline Offline

Activity: 154
Merit: 100



View Profile
May 12, 2013, 08:00:29 PM
 #383

I'm a noob in cryptocurrencies, are you telling that this new coin is a total crap and if someone mined a lot of FTC can convert them 1-1 with new gamecoins?

Yes, 1.3 million of them, assuming it works. Anyone tried it? I don't have any old feathercoins to test it with.

I'm on windows 7, do I need any software to try? I mined old feathercoins and I still have my old empty wallet.
JimmyFL
Member
**
Offline Offline

Activity: 84
Merit: 10



View Profile
May 12, 2013, 08:09:26 PM
 #384

I'm a noob in cryptocurrencies, are you telling that this new coin is a total crap and if someone mined a lot of FTC can convert them 1-1 with new gamecoins?

Yes, 1.3 million of them, assuming it works. Anyone tried it? I don't have any old feathercoins to test it with.

Key import is working. Would do mind write a script to doing the the other way? dump in game => import in feather
JimmyFL
Member
**
Offline Offline

Activity: 84
Merit: 10



View Profile
May 12, 2013, 08:25:36 PM
Last edit: May 12, 2013, 08:40:09 PM by JimmyFL
 #385

I'm a noob in cryptocurrencies, are you telling that this new coin is a total crap and if someone mined a lot of FTC can convert them 1-1 with new gamecoins?

Yes, 1.3 million of them, assuming it works. Anyone tried it? I don't have any old feathercoins to test it with.

Key import is working. Would do mind write a script to doing the the other way? dump in game => import in feather

Yeah... I will do it my self.My python knowledge is just basic, but the script appears to be pretty simple.
Chrisoldinho
Full Member
***
Offline Offline

Activity: 182
Merit: 100


View Profile
May 12, 2013, 08:34:02 PM
 #386

selling 2k - no idea what price to charge so just make me a sensible offer by pm and it's yours.

Reputation thread - https://bitcointalk.org/index.php?topic=207526.0

BTC: 1Lx4N52ZWBJ2ieRudrrUGjec6RybBuGhVV
jk1985
Full Member
***
Offline Offline

Activity: 143
Merit: 100


View Profile
May 12, 2013, 08:36:28 PM
 #387

Selling 7500 GMC.. PM your offers!

LTC: LW8Zy9u9efGQhHzb6HjnjHaCS3woPBzHuP
BTC: 1LfVPRzj6GNJ4wKUa9QZEuu2LvPYqqXZW3
Rep: https://bitcointalk.org/index.php?topic=209071
serge79
Full Member
***
Offline Offline

Activity: 154
Merit: 100



View Profile
May 12, 2013, 09:31:29 PM
 #388

I'm a noob in cryptocurrencies, are you telling that this new coin is a total crap and if someone mined a lot of FTC can convert them 1-1 with new gamecoins?

Yes, 1.3 million of them, assuming it works. Anyone tried it? I don't have any old feathercoins to test it with.

Key import is working. Would do mind write a script to doing the the other way? dump in game => import in feather

Yeah... I will do it my self.My python knowledge is just basic, but the script appears to be pretty simple.

My python knowledge is awful, let us know if you can write a scrypt  Smiley
ali1234
Newbie
*
Offline Offline

Activity: 10
Merit: 0


View Profile
May 12, 2013, 09:45:26 PM
 #389

I'm a noob in cryptocurrencies, are you telling that this new coin is a total crap and if someone mined a lot of FTC can convert them 1-1 with new gamecoins?

Yes, 1.3 million of them, assuming it works. Anyone tried it? I don't have any old feathercoins to test it with.

Key import is working. Would do mind write a script to doing the the other way? dump in game => import in feather

Just swap around 142 and 166. These are the feathercoin and gamecoin identifiers respectively.

There is no point in doing this though. You will not gain anything going the other way.
saudibull
Newbie
*
Offline Offline

Activity: 28
Merit: 0



View Profile
May 12, 2013, 09:59:16 PM
 #390

Why is this 'zip wallet the only one that gives me a malware warning before I download it.... hmmmm
blastbob
Hero Member
*****
Offline Offline

Activity: 602
Merit: 500



View Profile
May 12, 2013, 10:02:03 PM
 #391

chrome gives warnings if the files is "new" in their list. Windows 8 gives warning on unsigned code etc..

Scan the files with your own antvirus, and upload files to virustotal. Then run everything in sandboxed enviroment. Like Oracle Virtualbox


Bitrated user: blastbob.
kibu
Newbie
*
Offline Offline

Activity: 55
Merit: 0


View Profile
May 12, 2013, 10:08:58 PM
 #392

Hey guys. Is there already a going rate for Gamecoins? GMC/BTC?
syn999
Full Member
***
Offline Offline

Activity: 196
Merit: 100



View Profile
May 12, 2013, 10:45:08 PM
 #393

Hey guys. Is there already a going rate for Gamecoins? GMC/BTC?


50k for like 5-10ltc
i have seen something like that


computerparts
Sr. Member
****
Offline Offline

Activity: 378
Merit: 250



View Profile
May 12, 2013, 11:24:53 PM
 #394

Hey guys. Is there already a going rate for Gamecoins? GMC/BTC?

Yes there is it's 1,000,000 GMC/0.0 BTC
ali1234
Newbie
*
Offline Offline

Activity: 10
Merit: 0


View Profile
May 12, 2013, 11:32:59 PM
 #395

I ran an analysis on the double spending caused by feathercoin blocks. This is my result.

Top address with gamecoins from feathercoin is this one:

6mQ5euk9mGQCx9GEkk5UX9q5q5Q4gUypf1 134990.00000000
  txid: 1e868f1939e951d4294ba050ff59ffebf5844a3bf4c10cf64632d0e5efce1e95 vout: 0 value: 10000.00000000 SPENT IN BLOCK 6678
  txid: d9ed96d0b513ea053665ab413a418a80142b14bf12a881529b58c05a49ba8589 vout: 1 value: 124990.00000000 SPENT IN BLOCK 18582

124990 feathercoin was sent to this address in block 6634... interesting, huh?

http://cryptocoinexplorer.com:5750/block/40d60f798b76e0d814936156bf94899577f5f588fb1e7913c0fb6e665831e472

The rest of the addresses:
http://paste.ubuntu.com/5659688/

Note that the reason they are getting spent in gamecoin is not likely due to people intentionally claiming them, but rather because tx are crossing over from feathercoin and getting into gamecoin blocks. It should only be possible for these coins to be moved once by accident like this. Your gamecoin balance from importing feathercoin keys may not be identical to your feathercoin balance at block 6634 due to these cross-tx, and anyone who received feathercoins today might have got some gamecoins by accident too.
syn999
Full Member
***
Offline Offline

Activity: 196
Merit: 100



View Profile
May 12, 2013, 11:34:35 PM
 #396

Just read the frirst or second page, someone lost 3M GMC couple hrs after announced.

its not going to worth anyting

evershawn
Sr. Member
****
Offline Offline

Activity: 308
Merit: 250


Vod is a liar


View Profile
May 12, 2013, 11:46:04 PM
 #397

anyone want to trade some GME for any other alt coin? PM me or reply with an offer.
Andry
Newbie
*
Offline Offline

Activity: 25
Merit: 0


View Profile
May 13, 2013, 12:00:24 AM
 #398

ill take donations GYquDha9yZbKan7phfhGVSvJ2eKxkJ2P9e my wallet looks so empty Sad

The p2P is also down?
justover
Member
**
Offline Offline

Activity: 90
Merit: 10


View Profile
May 13, 2013, 12:40:46 AM
 #399

I've added a new p2pool.

Here are the parameters:

cgminer --scrypt -o 88.161.131.83:8112 -u yourGMCaddress -p .

statistics available here: http://88.161.131.83:8112

2% fee.

----
This one is up, and fully reliable.


This one is working well for me.  I have alot of rejects though..  Undecided

This p2pool works quite well for me too...
romerun
Legendary
*
Offline Offline

Activity: 1078
Merit: 1001


Bitcoin is new, makes sense to hodl.


View Profile
May 13, 2013, 12:45:42 AM
 #400

your launch has not complete until having a giveaway thread
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 »
  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!