Bitcoin Forum
April 30, 2024, 07:27:46 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   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 89 90 ... 143 »
  Print  
Author Topic: [ANN] [PPC] PPCoin Released! - First Long-Term Energy-Efficient Crypto-Currency  (Read 684414 times)
Jutarul
Donator
Legendary
*
Offline Offline

Activity: 994
Merit: 1000



View Profile
March 10, 2013, 09:06:42 PM
 #781

I am just going to drop a cross-reference here with respect to a recent heated debate in the bitcoin community with respect to the eternal cost of unspendable outputs, because ppcoin in principle is affected by the same deficiency:
https://bitcointalk.org/index.php?topic=150493.0

If bitcoin doesn't come up with a solution to this problem, it may be worth investigating how ppcoin can introduce innovative features to accommodate the issue.

The ASICMINER Project https://bitcointalk.org/index.php?topic=99497.0
"The way you solve things is by making it politically profitable for the wrong people to do the right thing.", Milton Friedman
1714505266
Hero Member
*
Offline Offline

Posts: 1714505266

View Profile Personal Message (Offline)

Ignore
1714505266
Reply with quote  #2

1714505266
Report to moderator
1714505266
Hero Member
*
Offline Offline

Posts: 1714505266

View Profile Personal Message (Offline)

Ignore
1714505266
Reply with quote  #2

1714505266
Report to moderator
No Gods or Kings. Only Bitcoin
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1714505266
Hero Member
*
Offline Offline

Posts: 1714505266

View Profile Personal Message (Offline)

Ignore
1714505266
Reply with quote  #2

1714505266
Report to moderator
1714505266
Hero Member
*
Offline Offline

Posts: 1714505266

View Profile Personal Message (Offline)

Ignore
1714505266
Reply with quote  #2

1714505266
Report to moderator
Sunny King (OP)
Legendary
*
Offline Offline

Activity: 1205
Merit: 1010



View Profile WWW
March 11, 2013, 04:41:36 AM
 #782

I am just going to drop a cross-reference here with respect to a recent heated debate in the bitcoin community with respect to the eternal cost of unspendable outputs, because ppcoin in principle is affected by the same deficiency:
https://bitcointalk.org/index.php?topic=150493.0

If bitcoin doesn't come up with a solution to this problem, it may be worth investigating how ppcoin can introduce innovative features to accommodate the issue.

I was aware of this issue so ppcoin has a minimum txout value of 1 cent. To think that such 'micropayment' should be supported on block chain is unrealistic in my opinion.

Although I think it's inaccurate to call it unspendable, it supposedly can be spent together with some other coins (txout), or combined when you consolidate the wallet due to fragmentation (too many small coins in wallet causing performance issues).
Jutarul
Donator
Legendary
*
Offline Offline

Activity: 994
Merit: 1000



View Profile
March 11, 2013, 04:57:36 AM
 #783

I was aware of this issue so ppcoin has a minimum txout value of 1 cent. To think that such 'micropayment' should be supported on block chain is unrealistic in my opinion.
You're referring to the reference client behavior. However, (I didn't check it) I assume that those transactions are still valid and could make it into the blockchain, correct?

Although I think it's inaccurate to call it unspendable, it supposedly can be spent together with some other coins (txout), or combined when you consolidate the wallet due to fragmentation (too many small coins in wallet causing performance issues).
Yes. A more concise description is "economically unfeasible" outputs, where you effectively spent more on redeeming than they're worth.


The ASICMINER Project https://bitcointalk.org/index.php?topic=99497.0
"The way you solve things is by making it politically profitable for the wrong people to do the right thing.", Milton Friedman
Sunny King (OP)
Legendary
*
Offline Offline

Activity: 1205
Merit: 1010



View Profile WWW
March 11, 2013, 05:05:32 AM
 #784

You're referring to the reference client behavior. However, (I didn't check it) I assume that those transactions are still valid and could make it into the blockchain, correct?

No in ppcoin it's enforced in block check that txout value must be at least 1 cent. If you create such a transaction manually it will fail CheckTransaction().
Jutarul
Donator
Legendary
*
Offline Offline

Activity: 994
Merit: 1000



View Profile
March 11, 2013, 05:06:46 AM
Last edit: March 11, 2013, 05:20:19 AM by Jutarul
 #785

You're referring to the reference client behavior. However, (I didn't check it) I assume that those transactions are still valid and could make it into the blockchain, correct?

No in ppcoin it's enforced in block check that txout value must be at least 1 cent. If you create such a transaction manually it will fail CheckTransaction().

wow. so what you're saying is that the minimum amount you can spent with ppcoin is bounded by the transaction fee?

I think there are some unnecessary statements in the source code which are due to different policies overlapping.
E.g.
Code:
        // To limit dust spam, require MIN_TX_FEE/MIN_RELAY_TX_FEE if any output is less than 0.01                                                                                               
        if (nMinFee < nBaseFee)
        {
            BOOST_FOREACH(const CTxOut& txout, vout)
if (txout.nValue < CENT)
                    nMinFee = nBaseFee;
        }

vs.

Code:
        if ((!txout.IsEmpty()) && txout.nValue < MIN_TXOUT_AMOUNT)
            return DoS(100, error("CTransaction::CheckTransaction() : txout.nValue below minimum"));

The ASICMINER Project https://bitcointalk.org/index.php?topic=99497.0
"The way you solve things is by making it politically profitable for the wrong people to do the right thing.", Milton Friedman
Sunny King (OP)
Legendary
*
Offline Offline

Activity: 1205
Merit: 1010



View Profile WWW
March 11, 2013, 05:33:16 AM
 #786

Right the code on the top is from bitcoin but I didn't remove it when I introduced the minimum txout value. The bitcoin logic you quoted is no longer used. Actually it's already obsolete when I enforced transaction fees throughout, i.e. ppcoin has no free transaction so nMinFee cannot be less than nBaseFee.
Sunny King (OP)
Legendary
*
Offline Offline

Activity: 1205
Merit: 1010



View Profile WWW
March 11, 2013, 05:43:20 AM
 #787

I think Misterbigg made a good point there that the 1 satoshi output is not going to be recycled because it cost more in fees to recycle them than their total value. I am not sure if this is what's happening on bitcoin, but there is a chance that the wallet consolidation would fail at the end, leaving thousands of those tiny outputs unable to be consolidated because there is not enough left to pay the fee, and then people just throw it away.

But anyways, ppcoin doesn't have this particular issue.
Jutarul
Donator
Legendary
*
Offline Offline

Activity: 994
Merit: 1000



View Profile
March 11, 2013, 05:52:05 AM
 #788

But anyways, ppcoin doesn't have this particular issue.
Foresight or serendipity ? Roll Eyes

The ASICMINER Project https://bitcointalk.org/index.php?topic=99497.0
"The way you solve things is by making it politically profitable for the wrong people to do the right thing.", Milton Friedman
Sunny King (OP)
Legendary
*
Offline Offline

Activity: 1205
Merit: 1010



View Profile WWW
March 11, 2013, 06:25:12 AM
 #789

It's much less costly to spam a new coin so I had to strengthen this part to counter certain class of spamming attack. Although people would argue that allowing tiny output value may open up to some good applications but in my opinion spamming is a serious issue so micropayment has to go.
Jutarul
Donator
Legendary
*
Offline Offline

Activity: 994
Merit: 1000



View Profile
March 11, 2013, 06:29:13 AM
 #790

It's much less costly to spam a new coin so I had to strengthen this part to counter certain class of spamming attack. Although people would argue that allowing tiny output value may open up to some good applications but in my opinion spamming is a serious issue so micropayment has to go.
a wise decision.

The ASICMINER Project https://bitcointalk.org/index.php?topic=99497.0
"The way you solve things is by making it politically profitable for the wrong people to do the right thing.", Milton Friedman
EskimoBob
Legendary
*
Offline Offline

Activity: 910
Merit: 1000


Quality Printing Services by Federal Reserve Bank


View Profile
March 11, 2013, 08:36:04 AM
 #791

Glad to see how PPC keeps moving on right direction and learning from btc mistakes. Few can do that.
Any thoughts on how to avoid the absurd situation BTC is or will be in with it's massive block chain? Installing an official BTC QT client now days is not a small task because of the huge download requirements (and it's getting worst by the minute). I still believe that big files are fragile files. 
I only ask because I see the ugly trend in BTC, where the complete transaction data will be available for only the select few. Rest of us have to rely on bits of data made available via some "middleware" ("explorers"), controlled by those few... stinks like bank... hold on, *coin supposed to free us from the central control! Wink

Cheers!

While reading what I wrote, use the most friendliest and relaxing voice in your head.
BTW, Things in BTC bubble universes are getting ugly....
Sunny King (OP)
Legendary
*
Offline Offline

Activity: 1205
Merit: 1010



View Profile WWW
March 11, 2013, 08:02:00 PM
 #792

Glad to see how PPC keeps moving on right direction and learning from btc mistakes. Few can do that.
Any thoughts on how to avoid the absurd situation BTC is or will be in with it's massive block chain? Installing an official BTC QT client now days is not a small task because of the huge download requirements (and it's getting worst by the minute). I still believe that big files are fragile files. 
I only ask because I see the ugly trend in BTC, where the complete transaction data will be available for only the select few. Rest of us have to rely on bits of data made available via some "middleware" ("explorers"), controlled by those few... stinks like bank... hold on, *coin supposed to free us from the central control! Wink

Cheers!

Regarding block chain size, I observe there are a couple lines of possible development in this front:

1) Ultraprune in bitcoin (large downloadable checkpoint of unspent outputs)
2) Balance based ledger block (this approach seems to have been taken by ripple)
3) Relocating unspent outputs forward in block chain

I am favoring 3) because of ease of implementation. Overall I think the most efficient is probably 2) but it's a costly redesign for bitcoin.

Regarding block size limit, it was put in there to prevent premature growth of block chain size. As you said, people have trouble doing the initial download because it's too intensive on the computer. We need more time for average PC to catch up to the job, to raise block size limit before that happens is going to make average node feeling the pain. The hardware more suitable for future bitcoin full node is: Terabyte SSD to accommodate the active part of block chain plus entire block index. Internet access preferably 100Mbps symmetric. This will allow bitcoin to begin competing against networks such as paypal in terms of transaction volume without sacrificing decentralization.

It's a tough decision, we'll see what happens with bitcoin. There is speculations going on that if bitcoin delays raising block size limit then transaction volume is going to flow to litecoin because at the current limit litecoin can handle 4x the transaction volume of bitcoin (bitcoin needs to raise block size limit to 4MB to match litecoin). The problem is that litecoin would have the exact same issues bitcoin network has in this situation.
irritant
Sr. Member
****
Offline Offline

Activity: 473
Merit: 250


Sodium hypochlorite, acetone, ethanol


View Profile
March 11, 2013, 08:14:24 PM
 #793

It's much less costly to spam a new coin so I had to strengthen this part to counter certain class of spamming attack. Although people would argue that allowing tiny output value may open up to some good applications but in my opinion spamming is a serious issue so micropayment has to go.

what is considered a micropayment? , or different question: what is the smallest amount possible to pay?  wouldnt this just make the number of digits behind the dot less   (0.0001 instead of 0.00000001)?   I dont really understand most of this , probably should read more about it .. my guess would be a micropayment is the smallest possible amount you're able to send, so i just dont really understand "micropayment has to go"  , if you are making micropayments bigger, they are still micropayments , no?   i guess im wrong here and there..
killerstorm
Legendary
*
Offline Offline

Activity: 1022
Merit: 1015



View Profile
March 11, 2013, 08:27:59 PM
 #794

Regarding block chain size, I observe there are a couple lines of possible development in this front:

1) Ultraprune in bitcoin (large downloadable checkpoint of unspent outputs)
2) Balance based ledger block (this approach seems to have been taken by ripple)
3) Relocating unspent outputs forward in block chain

I am favoring 3) because of ease of implementation.

Initial blockchain download is necessary only to verify that current UTXO set is correct.

If that isn't your concern, you can just get current UTXO set and hope it is correct.

So (3) solves approximately nothing.

The best approach is for miners to maintain UTXO set in form of a tree and link it from blocks.

This way anybody can do anything they want without even downloading the whole thing.

Chromia: a better dapp platform
Sunny King (OP)
Legendary
*
Offline Offline

Activity: 1205
Merit: 1010



View Profile WWW
March 11, 2013, 10:02:01 PM
 #795

Regarding block chain size, I observe there are a couple lines of possible development in this front:

1) Ultraprune in bitcoin (large downloadable checkpoint of unspent outputs)
2) Balance based ledger block (this approach seems to have been taken by ripple)
3) Relocating unspent outputs forward in block chain

I am favoring 3) because of ease of implementation.

Initial blockchain download is necessary only to verify that current UTXO set is correct.

If that isn't your concern, you can just get current UTXO set and hope it is correct.

So (3) solves approximately nothing.

The best approach is for miners to maintain UTXO set in form of a tree and link it from blocks.

This way anybody can do anything they want without even downloading the whole thing.

You are too quick dismissing the 3rd option. If everyone gets current UTXO set and trusting other nodes for it what's the implication on security and decentralization?

Where option 3) allows us stay true to the current security model where checkpoints and active part of the block chain guarantees your block index to be correct.
Sunny King (OP)
Legendary
*
Offline Offline

Activity: 1205
Merit: 1010



View Profile WWW
March 11, 2013, 10:13:49 PM
 #796

what is considered a micropayment? , or different question: what is the smallest amount possible to pay?  wouldnt this just make the number of digits behind the dot less   (0.0001 instead of 0.00000001)?   I dont really understand most of this , probably should read more about it .. my guess would be a micropayment is the smallest possible amount you're able to send, so i just dont really understand "micropayment has to go"  , if you are making micropayments bigger, they are still micropayments , no?   i guess im wrong here and there..

It's true that ppcoin effectively only accounts to cent, although it can support upto uPPC (1 millionth) in calculations. This allows users to send amounts like 0.010001, so they still have some room for their 'micro-transaction communications'. Also makes it easier to lower the minimum txout value in a hard fork.

By having a minimum send value enforced, it just means ppcoin does not support sub-cent micropayments. So far nobody has complained this to me, so I think really the impact to users is minimal.
AndyRossy
Sr. Member
****
Offline Offline

Activity: 448
Merit: 250


View Profile
March 12, 2013, 07:48:43 AM
 #797

and yes I think there is also an issue of micro change in the btc client btw.
sangaman
Sr. Member
****
Offline Offline

Activity: 342
Merit: 250



View Profile WWW
March 14, 2013, 05:38:36 PM
 #798

Thanks for your continued hard work on this project, Sunny, and congrats on patching up the vulnerability over generating POS blocks. I'm still a believer in POS as an efficient solution for cryptocurrency and I think PPC is an honest and promising implementation, much moreso than NVC it seems.

Is there any update on when we can expect PPC to move off checkpointing? It will be a big step forward.

My wishlist for PPC right now is a rebranding/redesign of the name and website. I've noted here before that "pee pee cee" and "pee pee coins" are clunky-sounding when spoken out loud. I'd rather have a name that highlights the coins unique features, such as energy-efficiency, and doesn't have any negative or humorous connotations. "GreenCoin" or "StakeCoin" are some simple names that come to mind, but there are probably better potential names that are more subtle. I'd be happy to brainstorm some more if you're interested. I strongly believe a different name could help a lot in appealing to a broader base of users.

I'd also love if the website were cleaner and simpler and presented more information about PPC in a straightforward and succinct manner. Currently there is just the white paper and I don't expect the casual browser to go into any detail reading that. The website is responsible for many important first impressions and currently it is cryptic and confusing.

I'd be more than happy to help with any of this, I do some web design and I wouldn't mind contributing towards the redesign of a website. Feel free to contact me.
mech
Member
**
Offline Offline

Activity: 115
Merit: 10



View Profile
March 14, 2013, 09:01:00 PM
 #799

Thanks for your continued hard work on this project, Sunny, and congrats on patching up the vulnerability over generating POS blocks. I'm still a believer in POS as an efficient solution for cryptocurrency and I think PPC is an honest and promising implementation, much moreso than NVC it seems.

Is there any update on when we can expect PPC to move off checkpointing? It will be a big step forward.

My wishlist for PPC right now is a rebranding/redesign of the name and website. I've noted here before that "pee pee cee" and "pee pee coins" are clunky-sounding when spoken out loud. I'd rather have a name that highlights the coins unique features, such as energy-efficiency, and doesn't have any negative or humorous connotations. "GreenCoin" or "StakeCoin" are some simple names that come to mind, but there are probably better potential names that are more subtle. I'd be happy to brainstorm some more if you're interested. I strongly believe a different name could help a lot in appealing to a broader base of users.

I'd also love if the website were cleaner and simpler and presented more information about PPC in a straightforward and succinct manner. Currently there is just the white paper and I don't expect the casual browser to go into any detail reading that. The website is responsible for many important first impressions and currently it is cryptic and confusing.

I'd be more than happy to help with any of this, I do some web design and I wouldn't mind contributing towards the redesign of a website. Feel free to contact me.

GreenCoin, good idea! May be "ECOin" ?

PPC? - Should become the first independent altcurrency!
irritant
Sr. Member
****
Offline Offline

Activity: 473
Merit: 250


Sodium hypochlorite, acetone, ethanol


View Profile
March 14, 2013, 10:53:35 PM
Last edit: March 15, 2013, 02:16:07 AM by irritant
 #800

i thought the name cannot be changed (in the beginning people didnt like the name because it made them think of paypal, and than some , but for some reason it isnt changable) , and there is also terracoin claiming to be green.  ... i'm not sure tho , still i think ppcoin has gotten some awareness which will be lost, with name changing


edit: you already asked 6 months ago https://bitcointalk.org/index.php?topic=101820.msg1242503#msg1242503 
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 89 90 ... 143 »
  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!