small note, it's a savings of 34 or 67 bytes *per histogram bucket* to have bare CTV v.s. v0/v1, so the interesting thing is that by making it cheaper bytes wise it might enable one to have, for the same byte budget, more buckets, which would make the feerate savings for the user even greater. E.g., assume user priorities are exponential, like: [10, 12, 14, 17, 20, 24, 29, 35, 42, 51] suppose binning into 4 groups yields: [10, 12, 14], [17, 20, 24], [29, 35, 42], [51] then the feerate of each group summarized by the max times bin count is [14 x 3], [24 x 3], [42 x 3], [51 x 1] = 291 suppose binning into 5 groups yields: [10, 12], [14, 17], [20, 24], [29, 35], [42, 51] [12 x 2] [17 x 2] [24 x 2] [35 x 2] [51x2] = 278 so it's clear that bins of 5 yields a discount, and the marginal cost difference of 5 bins vs 4 can be more than "paid for" by switching to bare instead of segwit v0. E.g., 4 segwits = 4*34 additional 5 bares = 1 extra output (34 bytes) + 1 extra input (41 bytes) + extra tx body (~10 bytes?) = ~2.5 x 34 additional weight so while in this particular case, the savings mean that 4 would likely be a better binning than 5 even if bare were available, if you imagine the groups scaled to more elements under the same distribution would have eventually the cost (291-278)*S > 2.5*34 make it worth switching the binning to 5 bins earlier than with would if the bins were more expensive. Kinda hard to perfectly characterize this type of knock-on effect, but it's also cool to think about how cheapness of the nodes in the graph changes the optimal graph, which means you can't just do a simple comparison of how much is a bigger than b. On Thu, Apr 21, 2022 at 7:58 PM Anthony Towns via bitcoin-dev < bitcoin-dev@lists.linuxfoundation.org> wrote: > On Thu, Apr 21, 2022 at 10:05:20AM -0500, Jeremy Rubin via bitcoin-dev > wrote: > > I can probably make some show up sometime soon. Note that James' vault > uses > > one at the top-level https://github.com/jamesob/simple-ctv-vault, but I > > think the second use of it (since it's not segwit wrapped) wouldn't be > > broadcastable since it's nonstandard. > > The whole point of testing is so that bugs like "wouldn't be broadcastable > since it's nonstandard" get fixed. If these things are still in the > "interesting thought experiment" stage, but nobody but Jeremy is > interested enough to start making them consistent with the proposed > consensus and policy rules, it seems very premature to be changing > consensus or policy rules. > > > One case where you actually use less space is if you have a few different > > sets of customers at N different fee priority level. Then, you might need > > to have N independent batches, or risk overpaying against the customer's > > priority level. Imagine I have 100 tier 1 customers and 1000 tier 2 > > customers. If I batcher tier 1 with tier 2, to provide tier 1 guarantees > > I'd need to pay tier 1 rate for 10x the customers. With CTV, I can > combine > > my batch into a root and N batch outputs. This eliminates the need for > > inputs, signatures, change outputs, etc per batch, and can be slightly > > smaller. Since the marginal benefit on that is still pretty small, having > > bare CTV improves the margin of byte wise saving. > > Bare CTV only saves bytes when *spending* -- but this is when you're > creating the 1100 outputs, so an extra 34 or 67 bytes of witness data > seems fairly immaterial (0.05% extra vbytes?). It doesn't make the small > commitment tx any smaller. > > ie, scriptPubKey looks like: > - bare ctv: [push][32 bytes][op_nop4] > - p2wsh: [op_0][push][32 bytes] > - p2tr: [op_1][push][32 bytes] > > while witness data looks like: > - bare ctv: empty scriptSig, no witness > - pw2sh: empty scriptSig, witness = "[push][32 bytes][op_nop4]" > - p2tr: empty scriptSig, witness = 33B control block, > "[push][32 bytes][op_nop4]" > > You might get more a benefit from bare ctv if you don't pay all 1100 > outputs in a single tx when fees go lower; but if so, you're also wasting > quite a bit more block space in that case due to the intermediate > transactions you're introducing, which makes it seem unlikely that > you care about the extra 9 or 17 vbytes bare CTV would save you per > intermediate tx... > > I admit that I am inclined towards micro-optimising things to save > those bytes if it's easy, which does incline me towards bare CTV; but > the closest thing we have to real user data suggests that nobody's going > to benefit from that possibility anyway. > > > Even if we got rid of bare ctv, segwit v0 CTV would still exist, so we > > couldn't use OP_SUCCESSx there either. segwitv0 might be desired if > someone > > has e.g. hardware modules or MPC Threshold Crypto that only support ECDSA > > signatures, but still want CTV. > > If you desire new features, then you might have to upgrade old hardware > that can't support them. > > Otherwise that would be an argument to never use OP_SUCCESSx: someone > might want to use whatever new feature we might imagine on hardware that > only supports ECDSA signatures. > > Cheers, > aj > _______________________________________________ > bitcoin-dev mailing list > bitcoin-dev@lists.linuxfoundation.org > https://lists.linuxfoundation.org/mailman/listinfo/bitcoin-dev >