Skip to main content
This tutorial walks you through reviewing an attack mode request as a DAO member. By the end, you’ll understand how to evaluate requests and approve or reject them.
Prerequisites: You must be the registry moderator or part of the DAO multisig.

What You’ll Do

  1. Find pending requests
  2. Review the protocol and contracts
  3. Check for copycat contracts
  4. Approve or reject the request

Step 1: Monitor for New Requests

Watch for AgreementStateChanged events with ATTACK_REQUESTED state:
Or query directly:

Step 2: Get Agreement Details

Fetch the agreement information:
Check the contracts in scope:
You now have all the information needed to evaluate the request.

Step 3: Review Checklist

Go through this checklist:
  • Was it deployed via BattleChainDeployer?
  • Does the protocol have a web presence, social accounts, audit reports?
  • Are the contact details valid?
This is the most important check.
  • Compare bytecode to known mainnet contracts
  • Search for similar protocol names on other chains
  • Check if the same contracts exist elsewhere with TVL
  • Is the bounty percentage in normal range (5-15%)?
  • Is the cap appropriate for the expected TVL?
  • Are identity requirements clear?
  • Are all necessary contracts included?
  • Is the child contract scope appropriate?
  • Is the recovery address a secure multisig?

Step 4: Make Your Decision

If Everything Looks Good: Approve

This:
  • Changes state to UNDER_ATTACK
  • Enables Safe Harbor protection
  • Allows whitehats to attack

If There Are Issues: Reject

This:
  • Returns state to NOT_DEPLOYED
  • Clears contract mappings
  • Protocol can resubmit with fixes
You’ve completed your first review! The protocol will see the state change via events.

Step 5: Document Your Decision

Record:
  • Agreement address reviewed
  • Contracts in scope
  • Checks performed
  • Decision rationale
  • Any concerns noted

Red Flags to Watch For

Reject or investigate further if you see:
  • Bytecode matches mainnet contracts
  • Protocol name mimics known protocol
  • No verifiable contact information
  • Extremely high bounty percentages (>25%)
  • Request via non-authorized path with no explanation

What’s Next?

How to Use Instant Promotion

Learn about emergency promotion for copycat situations

Governance Parameters

Understand the parameters you control