Good morning Weiji,

The issue here is that non-aggregated transaction are a potential attack vector.

As the network is pseudonymous, an anonymous attacker can flood the fullnode 
mempool network with large numbers of non-aggregated transactions, then in 
cooperation with a miner confirm a single aggregated transaction with lower 
feerate than what it put in the several non-aggregated transactions.
The attacker ends up paying lower for the single confirmed transaction, even 
though it cost the fullnode network a significant amount of CPU to process and 
validate all the non-aggregated transactions.

Once the single aggregate transaction is confirmed, the fullnodes will remove 
the non-aggregated transactions from the mempool, clearing out their mempool 
limit.
Then the attacker can once again flood the fullnode mempool network with more 
non-aggregated transactions, and again repeat with an aggregated transaction 
that pays below the total of the non-aggregated transactions, repeatedly 
increasing the load on the mempool.

Thus, we should really make transactions that could appear in the mempool 
non-aggregatable with other transactions in the mempool.
You should arrange for aggregation before the blockchain-level transaction hits 
the mempool.

One can compare cross-input signature aggregation designs.
Signature aggregation is only allowed within a single blockchain-level 
transaction, not across transactions, precisely so that a transaction that 
appears in the mempool cannot have its signatures aggregated with other 
transactions, and preventing the above attack.
Anyone trying to take advantage of signature aggregation needs to cooperatively 
construct the blockchain-level transaction outside of the mempool with other 
cooperating actors, all of which perform the validation themselves before 
anything hits the mempool.

Similarly I can imagine that cross-input ZKP aggregation would be acceptable, 
but not cross-transaction ZKP aggregation.
(And if you want to push for ZKP aggregation, you should probably push for 
cross-input signature aggregation first, as you would probably need to solve 
similar problems in detail and I imagine signature aggregation is simpler than 
general ZKP aggregation.)

Always expect that the blockchain and its supporting network is attackable.
Do ***NOT*** focus on blocks --- focus on the load on the mempool (the block 
weight limit is a limit on the mempool load, not a limit on the block CPU 
load!).
The mempool is a free service, we should take care not to make it abusable.
On the other hand, blockspace is a paid service, so load on it is less 
important; it is already paid for.
I strongly recommend **DISALLOWING** aggregation of ZKPs once a transaction is 
in a form that could potentially hit the mempool, and to require paid services 
for aggregation, outside of the unpaid, free mempool.

Regards,
ZmnSCPxj
_______________________________________________
bitcoin-dev mailing list
bitcoin-dev@lists.linuxfoundation.org
https://lists.linuxfoundation.org/mailman/listinfo/bitcoin-dev

Reply via email to