Pages:
Author

Topic: NA - page 45. (Read 893602 times)

legendary
Activity: 952
Merit: 1000
October 30, 2015, 03:33:29 AM
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.




hero member
Activity: 502
Merit: 500
October 30, 2015, 01: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://bitcointalksearch.org/topic/m.12810349

Trackcoins 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 ?

legendary
Activity: 980
Merit: 1000
October 29, 2015, 05: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.

sr. member
Activity: 275
Merit: 250
October 29, 2015, 04: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)
hero member
Activity: 637
Merit: 500
October 29, 2015, 02: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.
hero member
Activity: 638
Merit: 500
October 29, 2015, 02: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.
legendary
Activity: 1197
Merit: 1001
October 29, 2015, 12: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.
legendary
Activity: 1197
Merit: 1001
October 29, 2015, 12:37:05 PM
come on let the price go into the 400s again PLEASE !
member
Activity: 70
Merit: 10
October 29, 2015, 09:40:42 AM
Great! thanks for keeping this thread updated devs  Smiley
legendary
Activity: 924
Merit: 1000
sr. member
Activity: 275
Merit: 250
October 29, 2015, 08:35:59 AM
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. Sad

http://www.pxdojo.net/2013/12/bitcoin-private-key-necromancy.html is also a worthwhile read - this is where I got the script from.

Code:
#!/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 "
  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
sr. member
Activity: 458
Merit: 500
October 29, 2015, 08:08:37 AM
Damn MaNI you seem to know your shit. Gulden is in great hands.  GL sorting your issue out ShopemNL.
full member
Activity: 138
Merit: 100
October 29, 2015, 06: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/join

Done that

Rijk has to confirm first.

guldenpay for slack not gulden?
legendary
Activity: 952
Merit: 1000
October 29, 2015, 06: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/join

Done that

You get a confirmation mail as soon it is seen you want to join. Not an automated proces, i believe.
legendary
Activity: 1025
Merit: 1001
October 29, 2015, 05:57:51 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/join

Done that
legendary
Activity: 1025
Merit: 1001
October 29, 2015, 05:54: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
sr. member
Activity: 275
Merit: 250
October 29, 2015, 05:48:42 AM
Possibly try to run your command prompt as administrator and turn off your virus scanner. Ensure you have the 64 bit version of the program installed if it is a 64 bit windows.
I'm not sure what else to suggest, but the program is at this point not even reaching the part where it tries to recover the wallet.dat (it is failing just to make a copy of the wallet.dat with a different name) and this indicates something external is wrong e.g. unable to even access the file for some reason. (The read only attribute being the most obvious thing here - you are 100% sure the read only attribute is not set?)
If you send me the full debug.log in private perhaps I can pick up some other clues from it.

Yes i am pretty sure it aint that. Running cmd in admin modes. I just recovered more then just wallet.dat (It contains 2.12 GB) and going to try it again. I will let you know.

Okay, the next step then is probably to try and get the private keys directly with a hex editor - there are a few scripts around for this.

Can you pm me or add me on skype? [email protected]
Best would be if you can come on slack, if not PM, I won't be able to skype until later.
legendary
Activity: 1025
Merit: 1001
October 29, 2015, 05:48:33 AM
@Shopem: Are all maps readable? Maybe N:user/Appdata/Roaming/Gulden/ map can't be reached?

Go to Configure Map options in windows for that.

I am using N: disk to solve it so it doesnt use appdate folder. If i remove the wallet.dat file and start gulden.exe  it works without a problem.
legendary
Activity: 1025
Merit: 1001
October 29, 2015, 05:36:18 AM
Possibly try to run your command prompt as administrator and turn off your virus scanner. Ensure you have the 64 bit version of the program installed if it is a 64 bit windows.
I'm not sure what else to suggest, but the program is at this point not even reaching the part where it tries to recover the wallet.dat (it is failing just to make a copy of the wallet.dat with a different name) and this indicates something external is wrong e.g. unable to even access the file for some reason. (The read only attribute being the most obvious thing here - you are 100% sure the read only attribute is not set?)
If you send me the full debug.log in private perhaps I can pick up some other clues from it.

Yes i am pretty sure it aint that. Running cmd in admin modes. I just recovered more then just wallet.dat (It contains 2.12 GB) and going to try it again. I will let you know.

Okay, the next step then is probably to try and get the private keys directly with a hex editor - there are a few scripts around for this.

Can you pm me or add me on skype? [email protected]
sr. member
Activity: 275
Merit: 250
October 29, 2015, 05:32:13 AM
Possibly try to run your command prompt as administrator and turn off your virus scanner. Ensure you have the 64 bit version of the program installed if it is a 64 bit windows.
I'm not sure what else to suggest, but the program is at this point not even reaching the part where it tries to recover the wallet.dat (it is failing just to make a copy of the wallet.dat with a different name) and this indicates something external is wrong e.g. unable to even access the file for some reason. (The read only attribute being the most obvious thing here - you are 100% sure the read only attribute is not set?)
If you send me the full debug.log in private perhaps I can pick up some other clues from it.

Yes i am pretty sure it aint that. Running cmd in admin modes. I just recovered more then just wallet.dat (It contains 2.12 GB) and going to try it again. I will let you know.

Okay, the next step then is probably to try and get the private keys directly with a hex editor - there are a few scripts around for this.
Pages:
Jump to: