rongerhards
rongerhards
I have the same problem. Rekeyed, and the new secret key starts with a 3. the minimalist client is the only one that recognizes it, but i cannot re-enable the...
I’ll let you know if I come up with something. The good news is this: Putting the funky 52 character secret key into the minimalist client does generate the REAL...
Actually, the script generates the correct regular address from the 52 character secret code while not connected to the ripple network. Which means it is done in the javascript when...
I think we will find the answer here: https://github.com/jatchili/minimalist-ripple-client/commit/ee429da487bb6162d7877ef3a822a79faf51d695
Line 589 in the code: function generateRekeyedKey() { var keypair = generateAddress(); - var lengthIndicator = ripple.Base.encode([keypair.secret.length]); + var a1 = ripple.sjcl.codec.bytes.fromBits(ripple.Seed.from_json(keypair.secret).to_bits()); + var a2 = ripple.sjcl.codec.bytes.fromBits(ripple.Seed.from_json(MASTER_SECRET).to_bits()); + var rks...
Now i'm looking at the actual code at https://github.com/jatchili/minimalist-ripple-client/blob/master/dev.html Line 470 is called when the "set identity" button is pushed function pressSetIdentity() { var secret = document.getElementById("mysecret").value; if (document.getElementById("myaddress").innerHTML) {...
The answer lies in the code https://github.com/jatchili/minimalist-ripple-client/blob/master/dev.html Starting at line 689 Someone who knows javascript could tell us if we are able to extract the real new key. The program...
Ive hired a javascript programmer to look at this. hopefully he can come up with a solution
Update: I was able to extract the new secret key from the jatchili client. Unfortunately it is wrong, it is paired with a different account than the actual new regular...
Create a new empty address and you can see what happens.