Author

Topic: [ANN][XCP] Counterparty - Pioneering Peer-to-Peer Finance - Official Thread - page 341. (Read 1277023 times)

full member
Activity: 238
Merit: 100
Burn XCP with online wallet blockchian.info.
want to send the XCP to others.
Anyone help to instruct how to deal with it?
Thanks.
You can follow the instructions here and setup the client
http://goo.gl/z5algZ
(created by HalfCab)
or if you want it easier, wait a week or two for the release of the WebClient.
legendary
Activity: 1512
Merit: 1004
Burn XCP with online wallet blockchian.info.
want to send the XCP to others.
Anyone help to instruct how to deal with it?
Thanks.
full member
Activity: 224
Merit: 100
CabTrader v2 | crypto-folio.com
As someone who is heavily invested in counterparty, and not invested in any other project currently, having read that nxt can do 100s of transactions a second, I wonder how much of an edge that project has and what if any security risks the nxt protocol has .....
member
Activity: 70
Merit: 10
http://www.youtube.com/watch?v=dpwhT63EkZ4  Decentralized Applications - the future of Bitcoin  @ coin summit. Not interesting technically but from a point of how mainstream perception can and will be shaped.
sr. member
Activity: 476
Merit: 300
Counterparty Chief Scientist and Co-Founder
does anyone know if publishing a feed has an xcp cost?

It has none.
legendary
Activity: 1666
Merit: 1010
he who has the gold makes the rules
does anyone know if publishing a feed has an xcp cost?
full member
Activity: 238
Merit: 100
AuroroCoin attacked:
https://bitcointalksearch.org/topic/delete-546338
Just a cautionary note about moving to other PoW chains with low hash rate.
legendary
Activity: 1106
Merit: 1026
"magical distributed thingy"

Well, that explains the reaction I recently received on IRC. Wink

Nevertheless, the focus was on "storing data outside of the blockchain" and I mentioned DHTs only as one way to do it (or not to do it). Are you dismissing this concept as a whole?

Asking "why Bitcoin instead of X" is actually a good question.
legendary
Activity: 905
Merit: 1014
Peter, I'm not sure what DHT and OP_RETURN have to do with side chains.
sr. member
Activity: 476
Merit: 300
Counterparty Chief Scientist and Co-Founder
Cross-post from Counterparty forums: https://forums.counterparty.co/index.php/topic,208

Please keep the discussion of this topic on that thread.
legendary
Activity: 1120
Merit: 1168
An interesting introduction to the Chord and Kademilia algorithms is by a bitcoin developer here: http://offthelip.org/?p=149

Hey, thanks for the link. I read a few wikipedia articles, the BitTorrent things and searched the forum + mailing list, nothing really worth to share though. I heard Mike Hearn recommended TomP2P and if you are looking for an easy implementation in Python or C#, there you go. Smiley Edit: FreePasteryTutorial might be worth to look at, too.

It's worth searching through the #bitcoin-dev and #bitcoin-wizards irc logs for "DHT" - the Bitcoin development community considers them a joke for anything requiring security against adversaries, or even just good reliability in general:

You know, an interesting question to ask yourself is if it's totally ok to just embed a hash of the actual data in the blockchain, and rely on the data itself being made available by some DHT or something, why can't Bitcoin itself do that to make blocks smaller and improve scalability?

Remember that Bitcoin would work just fine if miners didn't validate transactions if clients implemented client-side validation, as is done in Mastercoin and Counterparty, and to a lesser extent, Colored Coins. What's so special about actually putting those tx's in the block?

Availability of all messages to reconstruct the latest state, right? At least that's the problem I see. To a lesser extend: each client must have at least access to the full chain of all transactions that involves one of his wallets to reconstruct his final balance and this is not necessarily given by a DHT. Altering of messages could be avoided, if OP_RETURN hash == key == H(message).

Despite that, I'm still fascinated by the idea of on overnet, slightly related: if there were a mechanism of easy communication, people could send around CoinJoin transactions, establish channels for micropayments or open a communication line for multisig signing in general.

And not just availability, but guaranteed availability with specific time limits. Basically, in a financial application it's not good enough to just have the message eventually get to the desired recipients - you need it to be guaranteed (with high probability) to either get to them in a certain amount of time or for the message to be considered invalid. (and detectably so) Blockchains due this because they're a genuine proof that messages were published, side-chains don't.

That said, if you're just trying to, say, make a decentralized mailing list or something with good anti-censorship properties side-chains are probably just fine as you can always have the user's client handle censorship reactively, e.g. by retrying the message. Having a fallback to insert-in-blockchain available as a last resort is good too, and may discourage censors from trying in the first place. But Counterparty, Mastercoin, and Colored Coins are all financial applications and need much better censorship resistance and time guarantees than that.
hero member
Activity: 647
Merit: 510
Counterpartying
how do i fund the wallet on testnet?

This is the easiest way to fund a testnet wallet. After the bitcoins arrive you can burn them for test XCP.

https://tpfaucet.appspot.com/
full member
Activity: 210
Merit: 100
Here's in case you wanted to take the conversation on the topic of OP_RETURN, Counterparty and what should and should not be allowed on the blockchain to a wider audience.

https://bitcointalksearch.org/topic/are-stagnation-and-a-hostility-to-innovation-bitcoins-greatest-threats-543181

Realistically, I don't think this is going to help at this stage.

I agree.

what do you think will?

Your mom, if she can code.


Moving to Dogecoin

Bellebite the troll has been on my ignore list for weeks, so to make sure I am not getting his filth on my screen. I suggest doing the same
legendary
Activity: 1106
Merit: 1026
An interesting introduction to the Chord and Kademilia algorithms is by a bitcoin developer here: http://offthelip.org/?p=149

Hey, thanks for the link. I read a few wikipedia articles, the BitTorrent things and searched the forum + mailing list, nothing really worth to share though. I heard Mike Hearn recommended TomP2P and if you are looking for an easy implementation in Python or C#, there you go. Smiley Edit: FreePasteryTutorial might be worth to look at, too.

You know, an interesting question to ask yourself is if it's totally ok to just embed a hash of the actual data in the blockchain, and rely on the data itself being made available by some DHT or something, why can't Bitcoin itself do that to make blocks smaller and improve scalability?

Remember that Bitcoin would work just fine if miners didn't validate transactions if clients implemented client-side validation, as is done in Mastercoin and Counterparty, and to a lesser extent, Colored Coins. What's so special about actually putting those tx's in the block?

Availability of all messages to reconstruct the latest state, right? At least that's the problem I see. To a lesser extend: each client must have at least access to the full chain of all transactions that involves one of his wallets to reconstruct his final balance and this is not necessarily given by a DHT. Altering of messages could be avoided, if OP_RETURN hash == key == H(message).

Despite that, I'm still fascinated by the idea of on overnet, slightly related: if there were a mechanism of easy communication, people could send around CoinJoin transactions, establish channels for micropayments or open a communication line for multisig signing in general.
member
Activity: 111
Merit: 10
Digitizing Valuable Hard Assets with Crypto
OP_RETURN can be used to store references to external resources, say for example very long meta transactions that don't fit into 40 byte, an asset contract or whatever. The storage pointed to could be a website which lists something like (for the sake of an example), a side chain or a P2P structure like a DHT. To my knowledge this was discussed several times, but never tested on a broader scale.

You know, an interesting question to ask yourself is if it's totally ok to just embed a hash of the actual data in the blockchain, and rely on the data itself being made available by some DHT or something, why can't Bitcoin itself do that to make blocks smaller and improve scalability?

Remember that Bitcoin would work just fine if miners didn't validate transactions if clients implemented client-side validation, as is done in Mastercoin and Counterparty, and to a lesser extent, Colored Coins. What's so special about actually putting those tx's in the block?

+1000 awesome point. 

Agreed. An excellent point. Thank you Peter.
legendary
Activity: 1666
Merit: 1010
he who has the gold makes the rules
I think the current price is still a bit high  until the open of web wallet. Smiley


in the old days (1990s) VCs in the valley used to value companies at $1m per developer, given inflation, I would say that the price is a bit undervalued at this stage.

I would say the valuation should be somewhere in the $10M range and not higher.  The lower amount partially b/c this is a decentralized effort with no real business development people to actually engage partners - as you can see from the recent shitstorm with LukeJr.

if this actually had a CEO type and some Head of BizDev, LukeJr and the rest of the Bitcoin dev team would have been treated in a more partner oriented fashion rather than devolving into monkey's throwing poo at each other.



legendary
Activity: 1057
Merit: 1000
The Experience Layer of the Decentralized Internet
I think the current price is still a bit high  until the open of web wallet. Smiley
newbie
Activity: 26
Merit: 0
So at the end of the price is a good time to buy, at the end of the price also can invest!
Good luck.
 Smiley Smiley
legendary
Activity: 1666
Merit: 1010
he who has the gold makes the rules
Seems like the core devs have to assume a future in which there are very few full nodes running compared to the number of transactions. Having tech savvy people downloading the full blockchain supporting the network can't be the future of bitcoin. Possibly, there needs to be a solution where light wallets can support the network without requiring the full blockchain.

I'd like a unicorn too, please.

I'm not knowledgeable enough to argue this with you. But it seemed that Peter Todd, and the Electrum guy talked about some streamlining possibilities.

If there's no incentive for full nodes outside of mining, and development, then I think you either have to imagine that in the future there won't be many full nodes, or else something has to be done to create that incentive.

i came across this magic pixie dust that solves problems like this

https://www.youtube.com/watch?v=3nbEeU2dRBg

full member
Activity: 237
Merit: 100
Seems like the core devs have to assume a future in which there are very few full nodes running compared to the number of transactions. Having tech savvy people downloading the full blockchain supporting the network can't be the future of bitcoin. Possibly, there needs to be a solution where light wallets can support the network without requiring the full blockchain.

I'd like a unicorn too, please.

I'm not knowledgeable enough to argue this with you. But it seemed that Peter Todd, and the Electrum guy talked about some streamlining possibilities.

If there's no incentive for full nodes outside of mining, and development, then I think you either have to imagine that in the future there won't be many full nodes, or else something has to be done to create that incentive.
Jump to: