Bitcoin Forum
June 24, 2024, 03:36:45 PM *
News: Voting for pizza day contest
 
   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 29 30 31 32 33 34 35 36 37 [38] 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 ... 265 »
  Print  
Author Topic: Official Anoncoin chat thread (including history)  (Read 530489 times)
A L I E N
Legendary
*
Offline Offline

Activity: 1358
Merit: 1000



View Profile
December 04, 2013, 05:15:16 PM
 #741


I am using client: v0.6.1-1999-g313123c-dirty-beta
Is this version fine or would you recommend another?  Thanks.

Check the protocol version in RPC. 70007 is the right one. And to say it like this, if you still recieve blocks you're probably on the right version Smiley

We're working on a new release, hoping it's finished to the weekend.

Thanks, Keep up the good work!
vindimy
Full Member
***
Offline Offline

Activity: 239
Merit: 100



View Profile
December 04, 2013, 08:36:54 PM
 #742

Hello there,

Reddit ALTcointip bot has just announced its 2nd round of signups for a list of supported cryptocurrencies.

Please see the announcement for details. Thanks!

-- vindimy

h2odysee
Full Member
***
Offline Offline

Activity: 238
Merit: 119


View Profile WWW
December 05, 2013, 02:11:18 AM
 #743

Some time ago, when I upgraded anoncoin, it said my old wallet.dat was corrupt.

How do I recover the private keys from the old wallet?

I tried running older versions of the daemon, but when I put the old wallet.dat in .anoncoin, they all crash with:

************************
EXCEPTION: 11DbException
Db::open: Invalid argument
anoncoin in AppInit()

terminate called after throwing an instance of 'DbException'
  what():  Db::open: Invalid argument
Aborted (core dumped)


I also tried pywallet, but I'm not sure what "otherversion" will work, if any.

Any help would be appreciated. Maybe there's a way to look for the private key manually, in a hex editor?

http://middlecoin.com - profit-switching, auto-exchanging scrypt pool that pays out in BTC
K1773R
Legendary
*
Offline Offline

Activity: 1792
Merit: 1008


/dev/null


View Profile
December 05, 2013, 04:27:45 AM
 #744

Some time ago, when I upgraded anoncoin, it said my old wallet.dat was corrupt.

How do I recover the private keys from the old wallet?

I tried running older versions of the daemon, but when I put the old wallet.dat in .anoncoin, they all crash with:

************************
EXCEPTION: 11DbException
Db::open: Invalid argument
anoncoin in AppInit()

terminate called after throwing an instance of 'DbException'
  what():  Db::open: Invalid argument
Aborted (core dumped)


I also tried pywallet, but I'm not sure what "otherversion" will work, if any.

Any help would be appreciated. Maybe there's a way to look for the private key manually, in a hex editor?
yes, pywallet is the right way to go. start it with --web and then browse to localhost:8989. if the wallet has a passphrase, you need to unlock it first in the WUI, after that you can dump your privkeys. if you need asistance i can help you, im on #anoncoin @ freenode, also you find me of course in your projects irc channel Wink

these problems happens if you mix db4.8 (or lower) wallets with db5 (or higher), as its not backward nor forward compatible. if you compiled from source, maybe you now used libdb5 and no longer libdb4.8 so if you can, get the libdb4.8 (in case you run ubuntu/linux (if not ubuntu, get source + compile), the official bitcoin PPA has the libdb4.8 included) and your problem should be gone. be sure to stick either to libdb5 or  to libdb4.8 as mixing creates exactly these problems.

[GPG Public Key]
BTC/DVC/TRC/FRC: 1K1773RbXRZVRQSSXe9N6N2MUFERvrdu6y ANC/XPM AK1773RTmRKtvbKBCrUu95UQg5iegrqyeA NMC: NK1773Rzv8b4ugmCgX789PbjewA9fL9Dy1 LTC: LKi773RBuPepQH8E6Zb1ponoCvgbU7hHmd EMC: EK1773RxUes1HX1YAGMZ1xVYBBRUCqfDoF BQC: bK1773R1APJz4yTgRkmdKQhjhiMyQpJgfN
h2odysee
Full Member
***
Offline Offline

Activity: 238
Merit: 119


View Profile WWW
December 05, 2013, 05:41:14 AM
 #745

these problems happens if you mix db4.8 (or lower) wallets with db5 (or higher)

Thanks. That clears things up. I remember upgrading to db5 around that time.

If I can't fix it, I'll get your help on IRC.

http://middlecoin.com - profit-switching, auto-exchanging scrypt pool that pays out in BTC
meeh (OP)
Hero Member
*****
Offline Offline

Activity: 490
Merit: 500


:)


View Profile WWW
December 05, 2013, 10:28:37 AM
 #746

these problems happens if you mix db4.8 (or lower) wallets with db5 (or higher)

Thanks. That clears things up. I remember upgrading to db5 around that time.

If I can't fix it, I'll get your help on IRC.

With pywallet you probably need to edit the address prefix to get the right output.

In the pywallet script around line 72 you should find;
Code:
addrtype = 0

Please change that to:
Code:
addrtype = 23

To display anoncoin private keys and addresses right. (This will remove the compatibility with bitcoin, so you need to set it back to 0 afterwards to get it to work with bitcoin again)

K1773R
Legendary
*
Offline Offline

Activity: 1792
Merit: 1008


/dev/null


View Profile
December 05, 2013, 04:21:04 PM
 #747

these problems happens if you mix db4.8 (or lower) wallets with db5 (or higher)

Thanks. That clears things up. I remember upgrading to db5 around that time.

If I can't fix it, I'll get your help on IRC.

With pywallet you probably need to edit the address prefix to get the right output.

In the pywallet script around line 72 you should find;
Code:
addrtype = 0

Please change that to:
Code:
addrtype = 23

To display anoncoin private keys and addresses right. (This will remove the compatibility with bitcoin, so you need to set it back to 0 afterwards to get it to work with bitcoin again)
ugh, thats ugly! you can specify the version at the WUI and also set it as parameter Tongue

[GPG Public Key]
BTC/DVC/TRC/FRC: 1K1773RbXRZVRQSSXe9N6N2MUFERvrdu6y ANC/XPM AK1773RTmRKtvbKBCrUu95UQg5iegrqyeA NMC: NK1773Rzv8b4ugmCgX789PbjewA9fL9Dy1 LTC: LKi773RBuPepQH8E6Zb1ponoCvgbU7hHmd EMC: EK1773RxUes1HX1YAGMZ1xVYBBRUCqfDoF BQC: bK1773R1APJz4yTgRkmdKQhjhiMyQpJgfN
A L I E N
Legendary
*
Offline Offline

Activity: 1358
Merit: 1000



View Profile
December 05, 2013, 07:37:08 PM
 #748

What are you thoughts on stablecoin's "mixer"?  Seems like BS to me, do you think it has any merit?  https://bitcointalk.org/index.php?topic=353971

meeh (OP)
Hero Member
*****
Offline Offline

Activity: 490
Merit: 500


:)


View Profile WWW
December 05, 2013, 09:04:10 PM
 #749

What are you thoughts on stablecoin's "mixer"?  Seems like BS to me, do you think it has any merit?  https://bitcointalk.org/index.php?topic=353971

Seems BS for the little I've seen.. Saw nothing special in the code that could do it, which means they mix it in a sentralized server and you then have to trust them on it, which is ... bad IMO. (I like decentralization, and no-trust ideas). But I'm gonna take a closer look and report back if I was misstaken Smiley

Stuffe
Newbie
*
Offline Offline

Activity: 29
Merit: 0


View Profile
December 06, 2013, 08:28:56 AM
Last edit: December 07, 2013, 05:48:22 PM by Stuffe
 #750

I have an idea that would make transaction amounts anonymous and the receiver address completely hidden.

[Edit, clearified PGP use]

First of all much of this will use PGP in reverse so the key Public key will be kept secret and the key Private key will be given out.
Therefore I will call the Public key the "Encryption key," and the Private key the "Decryption key" in the rest of this post.

Imagine two types of transactions in the block chain, one visible and one secret:
The visible one would include:
- the sender in plain text
- the receiver in plain text
- the amount in plain text

The secret one would include:
- sender in plain text
- The receiver id hashed with a salt, then encrypted with senders encryption PGP key (unique PGP pair for every transaction)
- The amount encrypted with senders encryption PGP key
- Parent transfer ID in plain text (transfer where the sender received the money he now wishes to spend)

Example
Let’s say we want to transfer coins we received in Transaction 1 (visible), to Bob in Transaction 2 (secret). Bob would take his id together with a salt and hash it and give us the hash. Now we take the hash and use our PGP encryption key to encrypt it together with the amount. We also give Bob our decryption key so he can privately verify the transaction when it goes out on the block chain, but we don’t give it to anyone else. Giving it out, would be the same as making the transaction visible. Of course any of the two parties now can make the transaction visible should they want to, by giving out the decryption key, but this is not a problem that can be fixed, as they are both aware of the transfer and could just tell people about it in any case.
Anyway Bob uses our decryption key to see on the block chain that it is his hash that is encrypted in the transfer, he sees the amount is right and he looks up the ID of the parent transfer and sees that we indeed have enough money from Transaction 1, that means it is verified. Also no one, not even we know Bobs real sender ID and only we and Bob know how much we actually send him.
But now Charlie doesn't know that we actually don’t have any money left, let’s try and buy something from him with money we already spent (Transaction 3). How can he know if we have the money? Well he gets our decryption key, otherwise he will think it is very weird and assume our payment is bogus. Then he looks at this new Transaction 3, he sees the reference to Transaction 1 where we got the money from, so that checks out. But he then searches for other transactions with references to Transaction 1 and he finds Transaction 2 that we made with Bob. But since he has our decryption key, he also can read the amount we sent to Bob, and subtract it from the money we had and sees that we actually don’t have enough coin for the transaction to be valid. The rule is that older transfers take priority over new ones, so even if we “overspend” in Transaction 3, everyone agrees that Transaction 2 is still valid. Only Transaction 3 is to be ignored. Now Charlie knows Transaction 3 is invalid and doesn't hand over the goods we tried to purchase!
Later transactions can always verify by the receiver in this way, so if Charlie always verify it properly he can be 100% of the coin he receives. Charlie can also see Bob’s receiver hash of course, but that doesn't reveal Bobs sender ID and he can’t “dictionary attack” with the senders on the block chain, since Charlie doesn't know the salt.
But say Bob now wants to send some of the money we gave him to David, how can David verify that Bob has the money when our Transaction 2 was secret? Well since it was secret, Bob has to make it to David, by sending our decryption key and the salt he used in that transaction to him. David now verifies Transaction 2 and that we were in fact the receivers and he can then verify Transaction 4 too and is happy that he received the coin.

Space issue:
Of course if David wants to spend the money from Transaction 4 he now must send both our and Bob’s decryption key and salt, together with his own and so on. In order for space for saved decryption keys and salts not to grow out of control long term, you could include a fix where senders would be forced to make old secret transactions visible by giving out the decryption keys and salts from those transactions. The network would not accept transfers unless outdated transactions become revealed at the same time. Information of this revealed old Transactions are added to the block chain and supersede the older ones (that can be removed using a method that doesn't compromising the security of the block chain. I won’t go into this now). And since our coin now only have 10 secret transactions back to the nearest visible one, we only have to store those 10 decryption keys and salts.

Receiver address:
Your receiver address is a hash of your sender salted address, you can generate as many receiving addresses as you want for each sender address, just by changing the salt. This also means you can keep your sender address hidden to the person sending to you and you can have him send to you multiple times, without him even knowing he is sending to the same sending address.

What do you guys think about this? It is not easy to explain, do you understand it? Have you found any flaws/mistakes?
bit777
Sr. Member
****
Offline Offline

Activity: 420
Merit: 250


View Profile
December 08, 2013, 11:19:04 AM
 #751

Peerbet.org now works with Anoncoin! You can play Wheel & Dice!
zccopwrx
Full Member
***
Offline Offline

Activity: 306
Merit: 100



View Profile
December 08, 2013, 07:51:33 PM
Last edit: December 08, 2013, 09:50:36 PM by zccopwrx
 #752

HashFaster's Crypto Mining Network has opened its AnonCoin pool!

Please come support us!

2%Fee PPLNS Payout.
Stratum only
VARDIFF 16-265
NY, CA, Amsterdam stratum servers

http://anc.hashfaster.com

Thanks!
ZC
K1773R
Legendary
*
Offline Offline

Activity: 1792
Merit: 1008


/dev/null


View Profile
December 08, 2013, 09:09:12 PM
Last edit: December 08, 2013, 10:33:02 PM by K1773R
 #753

HashFaster's Crypto Mining Network has opened its AnonCoin pool!

Please come support us!

2%Fee Proportional Payout.
Stratum only
VARDIFF 16-265
NY, CA, Amsterdam stratum servers

Thanks!
ZC
Proportional? Let the pool hopping scam begin!

[GPG Public Key]
BTC/DVC/TRC/FRC: 1K1773RbXRZVRQSSXe9N6N2MUFERvrdu6y ANC/XPM AK1773RTmRKtvbKBCrUu95UQg5iegrqyeA NMC: NK1773Rzv8b4ugmCgX789PbjewA9fL9Dy1 LTC: LKi773RBuPepQH8E6Zb1ponoCvgbU7hHmd EMC: EK1773RxUes1HX1YAGMZ1xVYBBRUCqfDoF BQC: bK1773R1APJz4yTgRkmdKQhjhiMyQpJgfN
zccopwrx
Full Member
***
Offline Offline

Activity: 306
Merit: 100



View Profile
December 08, 2013, 09:48:24 PM
 #754

That just made me rethink it a little... moved to PPLNS.

Thanks for jogging my memory.
K1773R
Legendary
*
Offline Offline

Activity: 1792
Merit: 1008


/dev/null


View Profile
December 08, 2013, 10:33:25 PM
 #755

That just made me rethink it a little... moved to PPLNS.

Thanks for jogging my memory.
much better, ty.

[GPG Public Key]
BTC/DVC/TRC/FRC: 1K1773RbXRZVRQSSXe9N6N2MUFERvrdu6y ANC/XPM AK1773RTmRKtvbKBCrUu95UQg5iegrqyeA NMC: NK1773Rzv8b4ugmCgX789PbjewA9fL9Dy1 LTC: LKi773RBuPepQH8E6Zb1ponoCvgbU7hHmd EMC: EK1773RxUes1HX1YAGMZ1xVYBBRUCqfDoF BQC: bK1773R1APJz4yTgRkmdKQhjhiMyQpJgfN
RAVENCROW
Full Member
***
Offline Offline

Activity: 169
Merit: 100



View Profile WWW
December 09, 2013, 11:35:38 PM
 #756

Trying it out now this i2p thing Is cool Smiley I like the anonymous git push and pulls

฿Allaboutbit ฿฿Cludcoin ฿[/color]
mladen00
Legendary
*
Offline Offline

Activity: 2124
Merit: 1013


K-ing®


View Profile
December 10, 2013, 12:37:22 PM
 #757

Hi everyone

What's yours opinion about ANC/BTC value a year from now?

IOTA
btc4ever
Sr. Member
****
Offline Offline

Activity: 321
Merit: 250


View Profile
December 11, 2013, 09:03:16 PM
 #758

Does anyone have instructions for setting up p2pool to mine anoncoin?

Is there even a p2pool anon network?

Psst!!  Wanna make bitcoin unstoppable? Why the Only Real Way to Buy Bitcoins Is on the Streets. Avoid banks and centralized exchanges.   Buy/Sell coins locally.  Meet other bitcoiners and develop your network.   Try localbitcoins.com or find or start a buttonwood / satoshi square in your area.  Pass it on!
geocurt
Newbie
*
Offline Offline

Activity: 55
Merit: 0


View Profile
December 11, 2013, 09:09:17 PM
 #759

If you folks want a great PPLNS ANC pool this is it:

https://anc.nut2pools.com/

Great server, excellent support, only 1% fee.  We just need somebody to point some HP our way.

And it's not my server - I just mine there and think they've done a great job so I'd like to have some fellow miners help us out.
Gelbstich
Hero Member
*****
Offline Offline

Activity: 562
Merit: 509



View Profile
December 11, 2013, 09:10:20 PM
Last edit: December 11, 2013, 09:57:10 PM by Gelbstich
 #760

Hi everyone

What's yours opinion about ANC/BTC value a year from now?
The price is rising and rising, so I guess in a year from now it'll be somewhere between 0.05 and 0.1 BTC for 1 ANC.

But what I absolutely don't get is people offering their ANCs for 1 Satoshi less than the current offer on the top.. it's so stupid to spam the markets like this, cause it prevents the price of developing in a direction a lot... any suggestions why there are like 10 offers in a range of 1% difference all the time? (speaking of cryptsy's marketplace)
Also are there other marketplaces for ANC at the moment where there are tradings at least once an hour?

H
                 
                    ░░░                 
            ░▒█████████████▓░           
          ▓███████████████████▓         
        ▓█████████▓▓▒▓▓▓████▓░         
      ▒███████▒           ░             
     ▓█████▓░                     ░▒   
    ▓█████▒    ░▓███████▓▒        ░▓▓▒ 
   ░█████░   ░█████████████▒    ▒▓▒▒▓░
   █████▒   ░███████████████▓    ▓▒▒▒▓  
   █████    █████████████████░   ▒▓▒▒▓░ 
  ░████▓   ░██████████▓▓▓▓▓███   ░▓▒▒▓░ 
  ▒████▓   ▒████▓▒░              ░▓▒▒▓░
   █████ ░███▓░   ░▒▒▓▓▓▓▓▓▓▓    ▒▓▒▒▓░
   ████████▓  ▒▒▓▓▓▓▓▒▒▒▓▒▓▓░    ▓▒▒▓▓ 
   ░██████   ░▓█▓▓▓▓▓▓▓▓▓▓▓░    ▓▓▒▒▓░ 
    ▓███▒       ▒▓▓▓▓▓▓▓▒░     ▓▓▒▓▓▒   
     ▓█                      ▒▓▓▒▓▓▒   
              ░           ░▒▓▓▓▓▓▓▒     
           ░▒▓▓▓▓▓▒▒▒▒▒▓▓▓▓▓▓▓▓▓▒       
          ░███▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▒         
             ░▒▓▓▓▓▓▓▓▓▓▓▓▒▒            

                         
R I Z E N
.......White Paper....... .......Node System and Sidechains....... .......Help Desk.......





 
   


   
 
   
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 29 30 31 32 33 34 35 36 37 [38] 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 ... 265 »
  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!