Search found 86 matches

by ryanc
Sun Jan 18, 2015 8:04 pm
Forum: Project direction
Topic: PROPOSAL: Name Epochs
Replies: 12
Views: 10225

Re: PROPOSAL: Name Epochs

phelix wrote:Sounds like a good idea. It could also work without history if the epoch value is saved in the namedb with every firstupdate.
Yes, ideally the namedb should just track the epoch value so it doesn't need to be looked up separately. The name history thing is just a way it could be implemented now.
by ryanc
Sat Jan 17, 2015 8:20 pm
Forum: Project direction
Topic: PROPOSAL: Name Epochs
Replies: 12
Views: 10225

PROPOSAL: Name Epochs

What is a "Name Epoch"? A name epoch is a period of 36,000 blocks. The epoch number would be floor(block height / 36,000), currently 5, soon to be 6. A registration can be uniquely identified by (name, epoch of name_firstupdate). If the name expires and is re-registered the epoch will be different. ...
by ryanc
Thu Jan 15, 2015 9:44 pm
Forum: General Discussion
Topic: Forum Logo / Official Namecoin Logo
Replies: 48
Views: 42572

Re: Forum Logo / Official Namecoin Logo

Is the Namecoin-Qt logo the same as the one on the wiki and main site? I like that one.
by ryanc
Wed Jan 14, 2015 8:05 pm
Forum: Tools, GUI & other softwares
Topic: Extending the Namecoin Wallet App to include Naming features
Replies: 5
Views: 45927

Re: Extending the Namecoin Wallet App to include Naming feat

If the Merkle tree is constructed for every block (needs a softfork) and contains all current names, then if you get a reply with a branch you can verify that the value you got is indeed the latest name. The only thing for which a server can lie to you is if it tells you the name does not exist (or...
by ryanc
Tue Jan 13, 2015 7:05 pm
Forum: Tools, GUI & other softwares
Topic: Extending the Namecoin Wallet App to include Naming features
Replies: 5
Views: 45927

Re: Extending the Namecoin Wallet App to include Naming feat

Bloom filter wouldn't be a good idea - they can have false positives, so you might identify a name as not being the latest version even though it is.
by ryanc
Tue Jan 13, 2015 2:24 am
Forum: Project direction
Topic: P2SH addresses
Replies: 12
Views: 13684

Re: P2SH addresses

The 6 prefix is used by BIP38 encrypted private keys. What about lower case s for the prefix?
by ryanc
Mon Jan 12, 2015 8:51 am
Forum: Project direction
Topic: P2SH addresses
Replies: 12
Views: 13684

Re: P2SH addresses

Should we support P2SH in name operations? E.g.

[name operation] OP_HASH160 [hash] OP_EQUAL

P2SH for names would be good to have.
by ryanc
Mon Dec 15, 2014 9:09 pm
Forum: Technical Support
Topic: Transaction creation failed
Replies: 8
Views: 9359

Re: Transaction creation failed

If anyone else has this problem, it's *probably* due to some sort of wallet corruption. I am not 100% sure of the cause, but we've had at least one instance where we were able to recover from the situation. Please hop on IRC if you're having this problem, I have some recovery tools but they're finic...
by ryanc
Sat Dec 13, 2014 8:35 pm
Forum: Tools, GUI & other softwares
Topic: ANTPY - Atomic Name Trading Pythonscript
Replies: 19
Views: 89731

Re: ANTPY - Atomic Name Trading Pythonscript

Also, on if Alice makes a sell offer and Bob accepts it, Charlie can sever Bob's portion off of the transaction, replace it with his own, and try to double spend. May not really be a problem since Charlie still has to pay for it. Buy offers do not have this problem.
by ryanc
Sat Dec 13, 2014 3:03 am
Forum: Tools, GUI & other softwares
Topic: ANTPY - Atomic Name Trading Pythonscript
Replies: 19
Views: 89731

Re: ANTPY - Atomic Name Trading Pythonscript

Possible problematic scenario: Alice makes an offer to sell d/example for 10NMC and posts it somewhere Bob makes an offer to buy d/example for 25NMC and posts it somewhere Charlie finds both these offers and makes a transaction where Bob gets d/example, Alice gets 10NMC and Charlie gets 15NMC minus ...