Skip to content

Instantly share code, notes, and snippets.

@RandyMcMillan
RandyMcMillan / populate_mempool.sh
Created October 14, 2025 00:33
populate_mempool.sh
#!/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"
@AdamISZ
AdamISZ / chaumian.md
Last active November 10, 2025 02:33
Chaumian ecash designs, notes

Chaumian cash in a Bitcoin world - cashu, Fedimint

What's this for?

  • 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?