- More scalable/faster than a blockchain (not enough utxos)
- Much better privacy security model than a blockchain
- Same or better theft security model than TTP but much worse than a blockchain
If it's so great, why hasn't it been done yet?
| #!/bin/bash | |
| # Configuration | |
| NUM_TRANSACTIONS=10 # Number of transactions to create | |
| AMOUNT_PER_OUTPUT=0.00001 # BTC amount for each recipient output | |
| INITIAL_FEE_RATE=1 # Starting fee rate in sat/vB | |
| FEE_RATE_INCREMENT=1 # Increment for fee rate per transaction | |
| echo "Starting mempool population script for testnet..." | |
| echo "Creating $NUM_TRANSACTIONS transactions, starting with fee rate $INITIAL_FEE_RATE sat/vB" |
If it's so great, why hasn't it been done yet?