veertje
Legendary
Offline
Activity: 952
Merit: 1000
|
|
October 29, 2015, 11:00:58 AM |
|
Best would be if you can come on slack, if not PM, I won't be able to skype until later.
gulden.slack.com? I cant get in https://gulden.com/nl/joinDone that You get a confirmation mail as soon it is seen you want to join. Not an automated proces, i believe.
|
|
|
|
markanth
|
|
October 29, 2015, 11:07:24 AM |
|
Best would be if you can come on slack, if not PM, I won't be able to skype until later.
gulden.slack.com? I cant get in https://gulden.com/nl/joinDone that Rijk has to confirm first. guldenpay for slack not gulden?
|
|
|
|
Litesire
|
|
October 29, 2015, 01:08:37 PM |
|
Damn MaNI you seem to know your shit. Gulden is in great hands. GL sorting your issue out ShopemNL.
|
|
|
|
MaNI
|
|
October 29, 2015, 01:35:59 PM |
|
Just in case it might be useful for anyone in future, I found and modified a basic python script that can search for private keys in an (unencrypted) wallet.dat and print them out in a way that you can import into the wallet. Tested it with a few valid wallet.dat files and it worked. As a last resort (if you have a lot of time) you could probably run this using a linux bootdisk against the entire partition. (expect some false positives - not everything it spits out is going to be a valid address) Unfortunately after this point it becomes a trade off of cost to pursue further etc. http://www.pxdojo.net/2013/12/bitcoin-private-key-necromancy.html is also a worthwhile read - this is where I got the script from. #!/usr/bin/python
import binascii import os import hashlib import sys
# bytes to read at a time from file (10meg) readlength=1*1024
if len(sys.argv)!=2: print "./keyhunter.py <filename>" exit()
filename = sys.argv[1]
f = open(filename) magic = '\x01\x01\x04\x20' magiclen = len(magic)
##### start code from pywallet.py ############# __b58chars = '123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz' __b58base = len(__b58chars)
def b58encode(v): """ encode v, which is a string of bytes, to base58. """
long_value = 0L for (i, c) in enumerate(v[::-1]): long_value += (256**i) * ord(c)
result = '' while long_value >= __b58base: div, mod = divmod(long_value, __b58base) result = __b58chars[mod] + result long_value = div result = __b58chars[long_value] + result
# Bitcoin does a little leading-zero-compression: # leading 0-bytes in the input become leading-1s nPad = 0 for c in v: if c == '\0': nPad += 1 else: break
return (__b58chars[0]*nPad) + result
def Hash(data): return hashlib.sha256(hashlib.sha256(data).digest()).digest()
def EncodeBase58Check(secret): hash = Hash(secret) return b58encode(secret + hash[0:4])
########## end code from pywallet.py ############
# read through target file # one block at a time while True: data = f.read(readlength) if not data: break
# look in this block for keys x=0 while True: # find the magic number pos=data.find(magic,x) #pos=data.find('\13\02\01\01\04\20',0) if pos==-1: break print EncodeBase58Check('\xA6'+data[pos+magiclen:pos+magiclen+32]) x+=(pos+1) # are we at the end of the file? if len(data) < readlength: break
# make sure we didn't miss any keys at the end of the block f.seek(f.tell()-(32+magiclen))
# code grabbed from pywallet.py
|
|
|
|
WaterLooDown
Legendary
Offline
Activity: 924
Merit: 1000
|
|
October 29, 2015, 02:35:01 PM |
|
|
|
|
|
CoinThug
Member
Offline
Activity: 70
Merit: 10
|
|
October 29, 2015, 02:40:42 PM |
|
Great! thanks for keeping this thread updated devs
|
|
|
|
Dutchyyy
Legendary
Offline
Activity: 1197
Merit: 1001
|
|
October 29, 2015, 05:37:05 PM |
|
come on let the price go into the 400s again PLEASE !
|
|
|
|
Dutchyyy
Legendary
Offline
Activity: 1197
Merit: 1001
|
|
October 29, 2015, 05:58:09 PM |
|
what about other exchanges? i do not want to register to an other one.
Bittrex is the main one for Gulden. It is very reliable and much better then cryptsy.
|
|
|
|
Jero
|
|
October 29, 2015, 07:06:09 PM |
|
what about other exchanges? i do not want to register to an other one.
Bittrex is a great exchange, I use this for over a year now. Never complaints. Suggest you have a look. I also use Cryptsy for other coins but everything is more slow (trading) and deposid/withdrawal takes a lot of time.
|
|
|
|
TamiLee
|
|
October 29, 2015, 07:38:11 PM |
|
what about other exchanges? i do not want to register to an other one.
Bittrex is a great exchange, I use this for over a year now. Never complaints. Suggest you have a look. I also use Cryptsy for other coins but everything is more slow (trading) and deposid/withdrawal takes a lot of time. EU people can use litebit.eu to purchase with fiat.
|
|
|
|
MaNI
|
|
October 29, 2015, 09:20:10 PM |
|
what about other exchanges? i do not want to register to an other one.
Bittrex is a great exchange, I use this for over a year now. Never complaints. Suggest you have a look. I also use Cryptsy for other coins but everything is more slow (trading) and deposid/withdrawal takes a lot of time. ok, mhh. i use poloniex and yobit. i will have a look at bitter then. If you want Gulden on other exchanges then as a user of those exchanges you should request it from them, it is ultimately the exchanges and the users of those exchanges that decide which coins to add, it is not something that the Gulden devs can control (well not without bribery and that isn't going to happen)
|
|
|
|
Buerra
Legendary
Offline
Activity: 980
Merit: 1000
|
|
October 29, 2015, 10:17:00 PM |
|
We noticed a few replies asking about Nocks and its developments. We're certainly still here, don't you worry about that. We're not as active on the forums that's true, we are however active in the concrete world. Loads of meetings, meet-ups and leads have come our way during this progression that we're working towards. Can't really say much else other then, hang in there, because we have some cool stuff in store for everyone. We're aiming to release these cool beans of joy in November and beyond. Stay knitty my friends.
|
|
|
|
Svener
|
|
October 30, 2015, 06:36:19 AM |
|
We noticed a few replies asking about Nocks and its developments. We're certainly still here, don't you worry about that. We're not as active on the forums that's true, we are however active in the concrete world. Loads of meetings, meet-ups and leads have come our way during this progression that we're working towards. Can't really say much else other then, hang in there, because we have some cool stuff in store for everyone. We're aiming to release these cool beans of joy in November and beyond. Stay knitty my friends.
This is just hype like guldex exchange from one of my horsemen because price is coming down. I say this is all hype and no delivery to try increase a rapid falling price. My horsemen confirm guldex was almost ready and has quit doing it for Gulden. https://bitcointalk.org/index.php?topic=1044432.msg12810349#msg12810349Trackcoins you are such a comedian. Nocks crew have always delivered where others have not. Lets be frank, Would you want quiters running your currency and people that leave when they don't have there way or a team that stays through all the shit talk and abuse they have had to put up with ?
|
|
|
|
veertje
Legendary
Offline
Activity: 952
Merit: 1000
|
|
October 30, 2015, 08:33:29 AM Last edit: October 30, 2015, 07:10:11 PM by veertje |
|
My horsemen confirm.....
........
You have been chosen as my final harbinger. AUR have all my horsemen. ........ Can we get more bad comments on that ANN to kill price.
This is where the Gulden haters hang out. Can we get more bad comments on that ANN to kill price.
Trackcoins, you're a funny guy. ....... We've already ditched a bunch of the fudders and trolls, so we're trying to keep things clean over here. We're trying to stay away from drama over here, mate. ..... If you're just here to troll NLG and AUR, we really don't need it, mate. Even in the AUR thread you are being seen as a fudder and a troll. You want to divide people that are commited to good crypto. No trolls needed here to influence people. Horses have to be free. I have great confidence in the Gulden dev team and Nocks team.
|
|
|
|
julian071
|
|
October 30, 2015, 08:46:38 AM |
|
We noticed a few replies asking about Nocks and its developments. We're certainly still here, don't you worry about that. We're not as active on the forums that's true, we are however active in the concrete world. Loads of meetings, meet-ups and leads have come our way during this progression that we're working towards. Can't really say much else other then, hang in there, because we have some cool stuff in store for everyone. We're aiming to release these cool beans of joy in November and beyond. Stay knitty my friends.
Great, thx!!!
|
=P
|
|
|
veertje
Legendary
Offline
Activity: 952
Merit: 1000
|
|
October 30, 2015, 09:30:10 AM |
|
..... Loads of meetings, meet-ups and leads have come our way during this progression that we're working towards. Can't really say much else other then, hang in there, because we have some cool stuff in store for everyone. We're aiming to release these cool beans of joy in November and beyond. Stay knitty my friends.
Good that you gave an update, Buerra Sounds good!
|
|
|
|
jakals
Member
Offline
Activity: 84
Merit: 10
|
|
October 30, 2015, 12:07:14 PM |
|
alright but where is the "scrypt PoW DELTA" miner ?
|
|
|
|
Dutchyyy
Legendary
Offline
Activity: 1197
Merit: 1001
|
|
October 30, 2015, 01:07:40 PM |
|
alright but where is the "scrypt PoW DELTA" miner ?
It's the same as mining a scrypt coin. DELTA is a diff algo like KGW.
|
|
|
|
bram_vnl
Legendary
Offline
Activity: 1148
Merit: 1000
|
|
October 31, 2015, 12:09:26 PM |
|
This is my address for making dump work GZmt3XkzSB , you that benefit from low price need to give me a tip. LTEC convince Ontopicplease to dump +3 million coins and LTEC is one of my four horsemen . Credit is give to me . Please donate that I can help you get low price for coin. https://bitcointalk.org/index.php?topic=554412.msg12804598#msg12804598I work hard for this community and all I get is hate back. I do it to force price down and make us get cheap coin. I will remove this after I get donation. Work hard? lol
|
|
|
|
Dutchyyy
Legendary
Offline
Activity: 1197
Merit: 1001
|
|
October 31, 2015, 12:20:53 PM |
|
This is my address for making dump work GZmt3XkzSByvogrXny9aYKL9Aw13gsmSvs , you that benefit from low price need to give me a tip. LTEC convince Ontopicplease to dump +3 million coins and LTEC is one of my four horsemen . Credit is give to me . Please donate that I can help you get low price for coin. https://bitcointalk.org/index.php?topic=554412.msg12804598#msg12804598I work hard for this community and all I get is hate back. I do it to force price down and make us get cheap coin. I will remove this after I get donation. It's his choice to sell for whatever reason he has. For all you know he needs the money for personal reasons.
|
|
|
|
|