Crypto & DeFi Security Recipes
This catalog groups reusable prompts for crypto payments and DeFi blockchain security. The recipes are tool-agnostic and are intended for bounded, auditable workflows with human approval.
Crypto payment recipes
- Hot-wallet transaction policy enforcement
- Crypto payment address integrity checks
- Seed phrase and key-material purge
DeFi blockchain recipes
- Smart-contract upgrade diff risk review
- DeFi oracle manipulation guardrails
- Bridge & multisig emergency response
Hot-wallet transaction policy enforcement
developmentUse this prompt to harden a hot-wallet signing pipeline so unsafe transactions are blocked before they can be signed. Use when Payment services sign transfers from online wallets. …
Crypto payment address integrity checks
developmentUse this prompt to prevent destination-address substitution and address-poisoning mistakes in crypto payment systems. Use when Users paste wallet addresses manually. Address books …
Seed phrase and key-material purge
developmentUse this prompt to locate and remove exposed wallet seed phrases, private keys, and signing credentials from code and operational systems. Use when A scan found possible BIP-39 …
Smart-contract upgrade diff risk review
developmentUse this prompt to review upgrade diffs and enforce invariant checks before smart-contract changes are approved. Use when Proxy implementation contracts are changing. Storage …
DeFi oracle manipulation guardrails
developmentUse this prompt to add and verify protections against oracle-based price manipulation in DeFi execution paths. Use when Liquidation and borrow limits rely on oracle prices. …
Bridge and multisig emergency response
developmentUse this prompt to codify emergency response for bridge and multisig incidents where rapid containment is required. Use when Bridge validator compromise is suspected. Multisig …