Pages:
Author

Topic: [Aug 2022] Mempool empty! Use this opportunity to Consolidate your small inputs! - page 32. (Read 83494 times)

legendary
Activity: 2828
Merit: 6108
Jambler.io
Let me correct myself: last call for low fees Tongue

Lots of corrections and fixes lately  Grin Grin

Probably we have till Monday, we are ~24 hours away from the weekend and we're entering this period with the smallest mempool in months, so unless something really really weird happens in terms of block time and hashrate or some other moron starts tweeting God knows what it might be that the fees will still be low on Sunday, averaging the same price as now. The last weekend we had no major events the mempool did drop from around 150MB to 110MB Friday to Sunday, so normal it would offset the drop in the extra 25-30 blocks a day we had.

And yeah electrum and fees
- next block fee 80.2 sat/b
- 1.0 MB from the tip 4.0 sat/b
Wonder what algorithm they use for the next block estimate


legendary
Activity: 3290
Merit: 16489
Thick-Skinned Gang Leader and Golden Feather 2021
We're back from ~8.3 minutes to ~10 minutes and I expect that get pretty soon visible in the fees.
I didn't check the difficulty, I only looked at mempool.

Let me correct myself: last call for low fees Tongue
legendary
Activity: 3500
Merit: 6205
Looking for campaign manager? Contact icopress!
Electrum's "ETA" recommendation is currently 200+ sat/byte for a next-block confirmation and 83 sat/byte to confirm within 25 blocks. That's rediculous, there's no need to waste this much money on fees. Don't use Electrum's ETA recommendation! Considering how popular Electrum is, it makes me wonder how much money people waste because of this.
Electrum's "Mempool" recommendation looks much better: for anything from 10 to 0.5 MB from the tip, it recommends 8 sat/byte. That's useful! Use Electrum's Mempool recommendation!

I think that you've chosen a dangerous moment for this recommendation. The difficulty has just jumped + 21.53 %, hence there will be quite a slow down in blocks.
We're back from ~8.3 minutes to ~10 minutes and I expect that get pretty soon visible in the fees.
legendary
Activity: 3430
Merit: 10504
-
It would probably be better if any implementation of my proposal would only apply to transactions sent after a cutoff date.

It could that effective block number x, transactions can be sent to addressed starting with bc2 that are "balanced based" addresses, and that after block number x plus n, no transaction will be valid until all outputs are sent to a "bc2" address that keeps track of address/key balances.
That requires a hard fork and a significant change in the database and chainstate which is harder than it sounds. There is no benefit in "balance base" bitcoin that I can think of either since it could be implemented using the way it is.

BTW "bc" is the fixed human readable part of SegWit addresses, "1" is the separator not the version, and the next letter after separator (in addresses) represents the version with "q" being first, "p" second, "z" third and so on.
copper member
Activity: 1610
Merit: 1898
Amazon Prime Member #7
-
It would probably be better if any implementation of my proposal would only apply to transactions sent after a cutoff date.

It could that effective block number x, transactions can be sent to addressed starting with bc2 that are "balanced based" addresses, and that after block number x plus n, no transaction will be valid until all outputs are sent to a "bc2" address that keeps track of address/key balances.
legendary
Activity: 3500
Merit: 6205
Looking for campaign manager? Contact icopress!
If 2 things happen we won't see any big fee spikes any time soon even with price surges or even if we see another small hashrate drop.
1. (smaller effect) If multi-sig users start using Schnorr instead after activation of it.
2. (biggest effect) If we move the traffic from big bitcoin exchanges to lightning network. If you look at each big fee spike in history they are almost always happening because bitcoin price either goes up A LOT or drops A LOT. That means the extra on-chain transactions are from traders. If that is moved to LN the on-chain capacity is left for other transactions. Not to mention the ability to deposit/withdraw bitcoins in an instant with virtually no fee while being in full control of the keys instead of having to leave them on the exchanges.

I hope that at least the withdrawals from exchanges will become smaller. That would be your [1] I guess.

I know that big variations in price make tx fees go crazy. I've suspected the arbitrage traders/bots, but it's more than that. However, as long as LN is "advertised" as beta, unfortunately the exchanges can easily make a point of not adding the LN support. And even afterwards it could be difficult to get all of them use LN (I'm sure you remember the we had the same with the adoption of SegWit).
legendary
Activity: 3430
Merit: 10504
However, it's a bummer, since it would have been of great help for common people, especially as after the next difficulty adjustment (i.e. in less than 3 days) the fees will probably rise again.
If 2 things happen we won't see any big fee spikes any time soon even with price surges or even if we see another small hashrate drop.
1. (smaller effect) If multi-sig users start using Schnorr instead after activation of it.
2. (biggest effect) If we move the traffic from big bitcoin exchanges to lightning network. If you look at each big fee spike in history they are almost always happening because bitcoin price either goes up A LOT or drops A LOT. That means the extra on-chain transactions are from traders. If that is moved to LN the on-chain capacity is left for other transactions. Not to mention the ability to deposit/withdraw bitcoins in an instant with virtually no fee while being in full control of the keys instead of having to leave them on the exchanges.

If you have 10 inputs in a transaction, all 10 inputs will need to be in the transaction, even if they are all from the same key. If each address had a balance instead of unspent outputs, a transaction with 10 inputs could be potentially reduced to a single input with a nonce and an amount (and a signature).
Bitcoin design is based on outputs not addresses and balances so it is not possible to do this without significant changes to the protocol.
However it could be implemented as a softfork with a new witness version for example. Something like this:
Assume an address has 5 UTXOs and you want to spend 2 of it (input 1 and 3) in a transaction while aggregating their signatures: (P2W3 is pay to witness version 3 as an example)
Code:
[
 [input0_addrA_P2PKH][sig0]
 [input1_addrB_P2W3][empty_sig]
 [input2_addrC_P2WPKH][empty_sig]
 [input3_addrB_P2W3][empty_sig]
 
 [witness0_empty]
 [witness1_witnessB]
 [witness2_witnessC]
 [witness3_empty]
]
Code:
[witness1_witnessA] = [1][3][signature][pubkey]
[1][3] are integers saying the follow up signature is for inputs at index 1 and 3 then signature and public key is used in OP_CHECKSIG and witness3 is empty because we have already added the signature for both inputs in witnessB
copper member
Activity: 1610
Merit: 1898
Amazon Prime Member #7

That's something a lot of people miss. Even if they are from the same address each UTxO has to be signed individually which takes up a lot of space.
There is an argument to change from signing individual UTXOs, someone spending coin would need to sign an address plus a nonce. This would encourage address reuse, which reduces privacy, and would make CPFP more complex, but would increase transaction throughput. It would also eliminate change addresses, which would also reduce privacy. It would be required that nonces are confirmed in order, but two nonces could be confirmed in the same block.

I am not sure, but won't Schnorr/Taproot fix this too? Or is it only wishful thinking from my side?
Technically ECSDSA (Schnorr digital signature algorithm) has the defined method to aggregate signatures which could be used to produce a single signature for multiple public [different] keys. Also technically we can add an option where a single signature (regardless of Schnorr) is produced for the same output scripts.
But neither one (as far as I know but definitely not the second one) are going to be added in the upcoming softfork.

What Taproot does is that you can have a more complex spending script that is bigger but you only reveal a portion of it that has to execute, that way you reduce the transaction size. There are also other benefits using Schnorr which include smaller fixed signature size and signature aggregation for multi-sigs.
If you have 10 inputs in a transaction, all 10 inputs will need to be in the transaction, even if they are all from the same key. If each address had a balance instead of unspent outputs, a transaction with 10 inputs could be potentially reduced to a single input with a nonce and an amount (and a signature).
legendary
Activity: 3500
Merit: 6205
Looking for campaign manager? Contact icopress!
Technically ECSDSA (Schnorr digital signature algorithm) has the defined method to aggregate signatures which could be used to produce a single signature for multiple public [different] keys. Also technically we can add an option where a single signature (regardless of Schnorr) is produced for the same output scripts.
But neither one (as far as I know but definitely not the second one) are going to be added in the upcoming softfork.

Thank you for clearing it up.
However, it's a bummer, since it would have been of great help for common people, especially as after the next difficulty adjustment (i.e. in less than 3 days) the fees will probably rise again.
legendary
Activity: 3430
Merit: 10504

That's something a lot of people miss. Even if they are from the same address each UTxO has to be signed individually which takes up a lot of space.
There is an argument to change from signing individual UTXOs, someone spending coin would need to sign an address plus a nonce. This would encourage address reuse, which reduces privacy, and would make CPFP more complex, but would increase transaction throughput. It would also eliminate change addresses, which would also reduce privacy. It would be required that nonces are confirmed in order, but two nonces could be confirmed in the same block.

I am not sure, but won't Schnorr/Taproot fix this too? Or is it only wishful thinking from my side?
Technically ECSDSA (Schnorr digital signature algorithm) has the defined method to aggregate signatures which could be used to produce a single signature for multiple public [different] keys. Also technically we can add an option where a single signature (regardless of Schnorr) is produced for the same output scripts.
But neither one (as far as I know but definitely not the second one) are going to be added in the upcoming softfork.

What Taproot does is that you can have a more complex spending script that is bigger but you only reveal a portion of it that has to execute, that way you reduce the transaction size. There are also other benefits using Schnorr which include smaller fixed signature size and signature aggregation for multi-sigs.
legendary
Activity: 3500
Merit: 6205
Looking for campaign manager? Contact icopress!

That's something a lot of people miss. Even if they are from the same address each UTxO has to be signed individually which takes up a lot of space.
There is an argument to change from signing individual UTXOs, someone spending coin would need to sign an address plus a nonce. This would encourage address reuse, which reduces privacy, and would make CPFP more complex, but would increase transaction throughput. It would also eliminate change addresses, which would also reduce privacy. It would be required that nonces are confirmed in order, but two nonces could be confirmed in the same block.

I am not sure, but won't Schnorr/Taproot fix this too? Or is it only wishful thinking from my side?
copper member
Activity: 1610
Merit: 1898
Amazon Prime Member #7

That's something a lot of people miss. Even if they are from the same address each UTxO has to be signed individually which takes up a lot of space.
There is an argument to change from signing individual UTXOs, someone spending coin would need to sign an address plus a nonce. This would encourage address reuse, which reduces privacy, and would make CPFP more complex, but would increase transaction throughput. It would also eliminate change addresses, which would also reduce privacy. It would be required that nonces are confirmed in order, but two nonces could be confirmed in the same block.

The topic of "consolidating inputs" has come up often in this thread, and the above would largely eliminate the need for that.
hero member
Activity: 2576
Merit: 882
Freebitco.in Support https://bit.ly/2I9BVS2
Hi thanks! I've done it just now. The thing is I was not thinking about the small inputs of that address for a while, because they were part of the same address and as I am a bit of a noob I was not aware that although they are the same direction they are small inputs that will cost me more expensive to spend in the future if I do not consolidate them.

That's something a lot of people miss. Even if they are from the same address each UTxO has to be signed individually which takes up a lot of space. Fees haven't been this low for four months and it could easily be as long again until the next chance to consolidate cheaply. If you needed to spend them when fees are higher it could you many times more.
legendary
Activity: 1358
Merit: 2011
What do you think about it. Should I consolidate them next Sunday if fees are still low or maybe just wait?

I would do it right now while you can at 1.2 Sats because there will be a difficulty increase before next weekend. Fees can't get much lower than they are right now so there is no point in waiting.

Hi thanks! I've done it just now. The thing is I was not thinking about the small inputs of that address for a while, because they were part of the same address and as I am a bit of a noob I was not aware that although they are the same direction they are small inputs that will cost me more expensive to spend in the future if I do not consolidate them.
hero member
Activity: 2576
Merit: 882
Freebitco.in Support https://bit.ly/2I9BVS2
What do you think about it. Should I consolidate them next Sunday if fees are still low or maybe just wait?

I would do it right now while you can at 1.2 Sats because there will be a difficulty increase before next weekend. Fees can't get much lower than they are right now so there is no point in waiting.
legendary
Activity: 1358
Merit: 2011
Hi, thanks to this post I sent a low fee transaction yesterday that was confirmed relative quickly.

I would like to ask a (probably simple) question: until now I had thought about saving everything I earn in the signature campaign and leave them in the same address where I receive the payments.

After discovering this thread, I have made some transactions to consolidate small inputs but from other addresses I had years ago where I had small amounts.

What I have been thinking lately is that I will have to consolidate some inputs from the address where I receive the payments of the signature campaign, because the first payments were of very little amount (the payment system goes by tiers and the lowest tier pays very little). In particular, I see that I have several payments from the beginning, of around 0.0001 BTC.

What do you think about it. Should I consolidate them next Sunday if fees are still low or maybe just wait? Maybe if I save everything I have in that address, and the price continues to rise in the future, that amount might be more tradable even if I pay fees.
legendary
Activity: 3290
Merit: 16489
Thick-Skinned Gang Leader and Golden Feather 2021
Last call this weekend for low fees Cheesy 2.x sat/byte is now being confirmed, and only 5 MB to confirm transactions with a fee lower than 2 sat/byte.
hero member
Activity: 2576
Merit: 882
Freebitco.in Support https://bit.ly/2I9BVS2
Someone just broadcasted 38 MB of transactions at 4 sat/byte:

In the same picture you can see an earlier broadcast of 6 MB at 3 sat/byte too. I see this a lot nowadays: the moment fees drop enough, someone (maybe an online casino) uses the opportunity to fill up many blocks (most likely consolidating a couple hundred thousand inputs).

I keep track of the total number of funded addresses. When fees drop, the number of funded addresses often drops too.

The 4 sats/vbyte consolidation is all going to https://btc.com/3EiEN1JJCudBgAwL7c6ajqnPzx9LrK1VT6

With a balance of over 3000 BTC I would guess an exchange rather than a casino.
legendary
Activity: 3290
Merit: 16489
Thick-Skinned Gang Leader and Golden Feather 2021
next diff jump it will end.
I'm afraid so. It's nice to see though how much difference a small increase in block capacity makes.

Someone just broadcasted 38 MB of transactions at 4 sat/byte:
Image loading...
In the same picture you can see an earlier broadcast of 6 MB at 3 sat/byte too. I see this a lot nowadays: the moment fees drop enough, someone (maybe an online casino) uses the opportunity to fill up many blocks (most likely consolidating a couple hundred thousand inputs).

I keep track of the total number of funded addresses. When fees drop, the number of funded addresses often drops too.
legendary
Activity: 4102
Merit: 7765
'The right to privacy matters'
Who feels like us? 💜
It took a coal mine accident in China, which caused a blackout, drop in hash rate and very high fees. Eventually this lead to a lower difficulty while miners were back online.

TL;DR: enjoy it while it lasts!

next diff jump it will end.

but we should have three to five more days of it.
Pages:
Jump to: