Relay OP_RETURN data TxOut as standard transaction type. #2738

pull jgarzik wants to merge 1 commits into bitcoin:master from jgarzik:op_return changing 5 files +56 −10
  1. jgarzik commented at 8:32 pm on June 4, 2013: contributor
    Add new standard transaction type, that permits small amount of data to be attached to a transaction, in the form of an additional TxOut that is provably prunable.
  2. jgarzik commented at 8:33 pm on June 4, 2013: contributor
    This is along the same vein as #1809 except this is per-transaction, not per-TxOut.
  3. BitcoinPullTester commented at 9:32 pm on June 4, 2013: none
    Automatic sanity-testing: PASSED, see http://jenkins.bluematt.me/pull-tester/e25168f78df4fcec52a88590dfa1b043c318b4fa for binaries and test log. This test script verifies pulls every time they are updated. It, however, dies sometimes and fails to test properly. If you are waiting on a test, please check timestamps to verify that the test.log is moving at http://jenkins.bluematt.me/pull-tester/current/ Contact BlueMatt on freenode if something looks broken.
  4. TheBlueMatt commented at 1:55 pm on June 5, 2013: member
    Concept/Code skim ACK, after payment protocol gets merged - too much ability to take the path of least resistance and just use OP_RETURN for adding data to a txn because there is no alternative.
  5. petertodd commented at 9:15 pm on June 5, 2013: contributor

    The current UI has no mechanism to show the user any messages in any OP_RETURN outputs, so I don’t think we’ll see people using OP_RETURN for stuff that would be better done with the payment protocol. What we do need is an alternative to data and hashes in unspendable outputs so we can nudge the users using Bitcoin for timestamping and similar things towards methods that are less harmful.

    I’m still of the opinion that using OP_RETURN should always be as easy and cheap as creating an unspendable txout. That would mean allowing as many OP_RETURN outputs in a transaction as you want, and allowing up to 192 bytes of data per one. (OP_CHECKMULTISIG equivalent, either bare or with P2SH) There should never be an excuse to use an unspendable UTXO rather than OP_RETURN and pressuring people into not doing it via social means isn’t working.

    Still, if a compromise is what it takes, it’s a good step forward.

    Once implemented widely, something @gmaxwell suggested was to change the UI so that creating a zero-value out transaction actually creates an OP_RETURN with the digest as the data. I think we should also see if we can convince blockchain.info to implement this on their API in some way. All the timestamping sites and phone apps that have popped up recently seem to use blockchain.info so it’d be great to use that as a way of pushing people onto OP_RETURN. In particular it’d be great if blockchain.info could make 20-byte out OP_RETURN txouts be indexed in their database as though they were addresses to give users a way to look up their timestamps, thus making the overall experience of doing the better thing strictly easier than harming the network.

    I’ll review/test code later.

  6. petertodd commented at 5:07 am on June 10, 2013: contributor
    FWIW I did take a careful look at the code and found some minor issues, but I’d like to hear more about people’s thoughts on the idea in general - some of the issues are fairly specific to implementation.
  7. jgarzik commented at 7:11 pm on June 24, 2013: contributor
    Rebased, and fixed @petertodd issue
  8. gmaxwell commented at 7:13 pm on June 24, 2013: contributor
    Should this be merged prior to OP_RETURN UTXO being excluded from the coinstate being widely deployed?
  9. sipa commented at 7:17 pm on June 24, 2013: member

    I agree with @TheBlueMatt that this shouldn’t be deployed before there’s a alternative for cases where it’d otherwise just be used a communication through the blockchain.

    I’m working on a patch that prunes OP_RETURN-starting pubkeyscripts.

  10. luke-jr commented at 4:15 am on July 17, 2013: member
    @jgarzik Rebase needed again.
  11. jgarzik commented at 3:42 am on August 25, 2013: contributor
    Rebased.
  12. dacoinminster commented at 7:30 pm on September 16, 2013: none
    MasterCoin may end up being the first real-world usage of this. I’m currently discussing with Jeff what would be involved: https://bitcointalk.org/index.php?topic=284178.msg3168249#msg3168249
  13. gmaxwell commented at 7:33 pm on September 16, 2013: contributor
    @dacoinminster There is already usage of this.
  14. maciej-trebacz commented at 6:32 pm on September 23, 2013: none
    Is there any target client version for this?
  15. jgarzik commented at 7:29 pm on September 23, 2013: contributor
    Mainly, people do not want this to go in before #2791 which seems like a reasonable request.
  16. in src/script.cpp: in 98fdb14c98 outdated
    1234@@ -1230,6 +1235,12 @@ bool Solver(const CScript& scriptPubKey, txnouttype& typeRet, vector<vector<unsi
    1235                 else
    1236                     break;
    1237             }
    1238+            else if (opcode2 == OP_SMALLDATA)
    1239+            {
    1240+                // small pushdata, <= 80 bytes
    1241+                if (vch1.size() > 80)
    


    petertodd commented at 10:25 pm on September 23, 2013:
    Why 80 bytes? That’s significantly larger than a hash, yet still too small for a announce-commit sacrifice.

    Diapolo commented at 8:39 am on October 7, 2013:
    Couldn’t that be exactly the maximum size a hash can have?

    jgarzik commented at 8:43 am on October 7, 2013:
    It is one SHA512 hash plus some metadata, enabling “BOND $hash” style usage that has been discussed in the past, published on the wiki and implemented in at least one [non-working, inactive] project.
  17. maciej-trebacz commented at 3:30 pm on September 24, 2013: none

    It seems that #2791 got merged, so I guess we have green light here?

    As for the size, 40 bytes is probably enough to contain a 256 bit hash plus some additional data.

  18. gmaxwell commented at 3:34 pm on September 24, 2013: contributor

    @M4v3R See my above comment. Being merged wasn’t the bar I was suggesting.

    Whats your interest / application here?

  19. sipa commented at 3:35 pm on September 24, 2013: member

    I’m still in the middle here.

    Ideally, there is just no intent of using the blockchain as a storage mechanism for arbitrary data at all. Unfortunately, it there seems such ridiculous demand for it, that it happens anyway - costly or not, as we’ve seen in the past.

    Given that this is inevitable, the choice is whether such usage should have a way to not burden the UTXO set, which is what this proposal does. The problem is that people may see this as a legitimation of the storage in the first place, and encourage doing so even more.

  20. gmaxwell commented at 3:39 pm on September 24, 2013: contributor

    @sipa > “May see” I don’t think there is any ambiguity there, “will see”. But is it worth the trade off to shape it towards less harmful forms when it happens? @petertodd needs? Is this just because they want to store more than 80 bytes?!

    (Incidentally, I still think 80 bytes is too much, but I do find PT’s existence of alternatives argument relatively convincing on that point)

  21. petertodd commented at 3:42 pm on September 24, 2013: contributor
    Ooops, deleted my comment accidentally, reproduced below: @sipa I think MasterCoin shows that you can’t stop datastorage in the blockchain via social means, only technical ones. (or occasionally the threat of a technical change) Their protocol needs the ability to store more than one data txout per transaction, which means they have reasons to ignore OP_RETURN as implemented here (because you are limited to one OP_RETURN txout) in favor of sticking with CHECKMULTISIG.
  22. petertodd commented at 3:45 pm on September 24, 2013: contributor
    @gmaxwell Who cares? It’s easy for them to make a protocol that does what they want with CHECKMULTISIG, so that’s what they’ll do.
  23. petertodd commented at 3:47 pm on September 24, 2013: contributor
    IMO what we should do is alongside this patch make anything other than P2SH and pay-to-pubkey-hash in a scriptPubKey non-standard and make OP_RETURN be allowed to be present as often as you want, with a data payload size calculated to be a bit cheaper than the alternative possible by P2SH w/ inner CHECKMULTISIG data payloads. That’s the right solution because it gives the correct economic incentives with a solid technical implementation.
  24. gmaxwell commented at 3:53 pm on September 24, 2013: contributor

    @petertodd In your second to last comment didn’t you just propose limiting bare multisig? That removes datastorage in utxos in that case too. WRT who cares— part of the idea here is shaping behavior towards conservative needs.

    For many abuses of bitcoin you only need a hash, and that carries a lot less risk for the system. So I care about the motivation because I want to know if enabling this is going to signal to people that this makes non-hash data “kosher”.

  25. petertodd commented at 4:12 pm on September 24, 2013: contributor

    @gmaxwell Oh, yeah, that’s correct, so once you limit the UTXO-usage by getting rid of everything but P2SH and pay-to-pubkey-hash making your OP_RETURN be cheaper than either mechanism is what we want. Given that each 20-byte-hash output has a cost in terms of Bitcoins burned (due to the dust rule) it’d be enough to make the data allowed in an OP_RETURN be equal to 20 bytes, and either require the rest to destroy Bitcoins, or just make all OP_RETURN’s not subject to the dust rule to make it clear that implementing OP_RETURN in your shitty app is worth the trouble. (note how in this case relative to the data storage required by legit financial transactions you’re paying a large premium per-byte because you can’t make use of the 8-byte txout value while they can, and eventually we can even mandate it’s actually a hash a-la P2SH^2)

    Anyway my point is that you don’t shape behavior by just telling people, you have to actually force them through incentives and limitations.

  26. maciej-trebacz commented at 4:41 pm on September 24, 2013: none
    @gmaxwell I already stated that on the mailing list. My interest is to attach an additional signature to transactions generated by my service, so anyone receiving the transaction can see that it came from the service. This would allow merchants or exchanges to safely accept Bitcoins after zero confirmations, because then know they’ll coming from my service, which acts as an escrow and will never double spend.
  27. petertodd commented at 4:45 pm on September 24, 2013: contributor
    @M4v3R Given that the additional OP_RETURN data will make your transactions easily identifiable anyway why not just use a single green address and send all transactions from it? Or just provide a way to query your server over SSL to just ask if a particular transaction is from you?
  28. petertodd commented at 4:52 pm on September 24, 2013: contributor
    @M4v3R BTW if you’re working to make a business based on securing zero-conf, I should warn you that we’ve got a way of making them fairly secure that could make your business plans obsolete: https://bitcointalk.org/index.php?topic=251233.msg2669189#msg2669189
  29. maciej-trebacz commented at 8:57 am on September 25, 2013: none
    @petertodd If that’s the case then this is great news. No, my business model is not based on securing zero-conf, I just thought it could be a valuable addition to the business, but if that will be solved another way I’m all for it.
  30. maciej-trebacz commented at 9:04 am on September 25, 2013: none

    @petertodd My service is based on giving the service operators as little trust as possible (ideally, no trust at all). That means that at any point I don’t want to be in 100% control of users coins. This is implemented by using multi signature transactions. With that in mind I can’t use a single green address because it would require me to route all transactions to that address first, thus getting in control of the coins for that moment, which I don’t want. I could provide an SSL API for asking for transaction ownership, but that creates an additional step for receiving clients to implement, and relies on the API having very high uptime, and on the network itself. Whereas signature checking can be done without any network requests, so its more reliable.

    PS. This could start a discussion whether the above goal is possible, but please leave that discussion for another time, as this has nothing to do with the issue we’re discussing.

  31. Relay OP_RETURN data TxOut as standard transaction type a79342479f
  32. jgarzik commented at 3:51 pm on October 2, 2013: contributor
    Rebased. Code-wise it is merge-ready now, though @sipa illustrated the current merge decision factors.
  33. in src/main.cpp: in a79342479f
    515         }
    516     }
    517 
    518+    // only one OP_RETURN txout is permitted
    519+    if (nDataOut > 1) {
    520+        reason = "mucho-data";
    


    gavinandresen commented at 7:05 am on October 4, 2013:

    “mucho-data” ? You trolling to see if we’re paying attention?

    “multi-op-return” would be better for non-Spanglish speakers.


    sipa commented at 8:35 am on October 4, 2013:
    Glad that someone actually reads the code changes…

    jgarzik commented at 8:35 am on October 7, 2013:

    Speaking as the person who wrote the “reason=string” code in IsStandardTx(), the strict requirement is that the “reason” is computer-parsable and static vis-a-vis the condition being reported, not necessarily English ;-)

    This was added in the most recent rebase, just to have a little fun. If you want to be boring I’ll change it :)


    Diapolo commented at 8:38 am on October 7, 2013:
    I want you to be boring and create interesting pulls, I’m the boring-string guy you know ^^.

    Sjors commented at 8:30 am on January 10, 2019:
    For historical reference: mucho-data was renamed to multi-op-return: https://github.com/bitcoin/bitcoin/pull/3589/files
  34. gavinandresen commented at 7:22 am on October 4, 2013: contributor
    How should I test this?
  35. BitcoinPullTester commented at 7:47 am on October 4, 2013: none
    Automatic sanity-testing: PASSED, see http://jenkins.bluematt.me/pull-tester/a79342479f577013f2fd2573fb32585d6f4981b3 for binaries and test log. This test script verifies pulls every time they are updated. It, however, dies sometimes and fails to test properly. If you are waiting on a test, please check timestamps to verify that the test.log is moving at http://jenkins.bluematt.me/pull-tester/current/ Contact BlueMatt on freenode if something looks broken.
  36. petertodd commented at 8:01 am on October 4, 2013: contributor

    @gavinandresen Seems to me that we should have an -accept-nonstd option that -testnet soft-sets to true so that -accept-nonstd=0 can be used easily to test mainnet behavior exactly. (or conversely, -reject-nonstd) I’ve seen multiple people get confused by that difference when testing their code, usually when debugging nLockTime-using protocols where propagation differs.

    https://github.com/petertodd/bitcoin/tree/accept-nonstdtxn is up to date IIRC and could be easily modified for that purpose.

  37. jgarzik commented at 8:38 am on October 7, 2013: contributor

    @gavinandresen I made hand-created outputs using https://github.com/gasteve/node-libcoin For python this should work, https://github.com/jgarzik/python-bitcoinlib

    Then I pushed to TNIAB setup and manually observed.

  38. jgarzik commented at 8:40 am on October 7, 2013: contributor

    @petertodd I’m fine with (1) a chain param indicating accept-nonstd, and (2) a command-line param enabling alteration of that default.

    Current default behavior must be preserved of course.

  39. petertodd commented at 1:22 am on October 21, 2013: contributor
    We should allow a bare OP_RETURN scriptPubKey - no data payload - to IsStandard() as well; sometimes it’s useful to simply send Bitcoins to fees with no message or data at all. Example, https://github.com/petertodd/dust-b-gone/ which creates coinjoin tx’s that destroy dust by spending inputs to fees with a single OP_RETURN txout.
  40. jgarzik commented at 2:50 am on October 21, 2013: contributor
    Agreed. I actually think it should be valid to have zero outputs (100% fee), but as that is a hard forking change, a dummy output is about as good as it gets.
  41. gavinandresen commented at 5:47 am on October 22, 2013: contributor
    … mumbles about the perfect being the enemy of the good then merges….
  42. gavinandresen referenced this in commit be484db274 on Oct 22, 2013
  43. gavinandresen merged this on Oct 22, 2013
  44. gavinandresen closed this on Oct 22, 2013

  45. FuzzyBearBTC referenced this in commit 2282a40300 on Jan 25, 2014
  46. FuzzyBearBTC referenced this in commit f947c6debc on Jan 25, 2014
  47. FuzzyBearBTC referenced this in commit b4f6aa281d on Jan 25, 2014
  48. FuzzyBearBTC referenced this in commit 5e0b0e28f2 on Jan 25, 2014
  49. mhanne referenced this in commit 844f23878c on Feb 27, 2014
  50. lian referenced this in commit 9436a97b0b on Mar 4, 2014
  51. jgarzik deleted the branch on Aug 24, 2014
  52. DrahtBot locked this on Sep 8, 2021

github-metadata-mirror

This is a metadata mirror of the GitHub repository bitcoin/bitcoin. This site is not affiliated with GitHub. Content is generated from a GitHub metadata backup.
generated: 2024-10-05 04:12 UTC

This site is hosted by @0xB10C
More mirrored repositories can be found on mirror.b10c.me