Skip to main content
For EVM-style pending transactions, CAW supports two recovery flows:
  • speedup_transaction to replace the pending transaction with a higher-fee version
  • drop_transaction to cancel it with a replacement transaction to the same nonce

Speed up a transaction

caw tx speedup <TRANSACTION_UUID> \
  --fee '{"fee_type":"EVM_EIP_1559","max_fee_per_gas":"50000000000","max_priority_fee_per_gas":"2000000000"}'

Drop a transaction

caw tx drop <TRANSACTION_UUID>

When to use which

ActionUse when
speedup_transactionYou still want the same operation to execute, just faster
drop_transactionYou want to cancel the pending operation altogether
For recovery, always pair these actions with Transaction Tracking.