Harley
πŸ“ŠDashboard⚑StrategiesπŸ“ˆPerpsπŸ›οΈRWAπŸͺ‚AirdropsπŸ€–Agents🎯BountyπŸ›‘οΈRules
🎯 Bounty Hunter
Turn security research into USDC
Immunefi β†—
Total Earned
$0
Active Targets
3
Findings This Week
0
Submissions Pending
0
🎯 Target Watchlist
MorphoπŸ”΅ BaseUp to $200k
Vault logic, supply/borrow accounting
Aave V3πŸ”΅ BaseUp to $250k
Supply/withdraw logic, liquidation paths
SteakhouseπŸ”΅ Base
MetaMorpho vault logic, fee accounting
Jupiterβ—Ž SolanaUp to $1.0M
Swap routing, slippage protection
Superfluid🌊 Multi-chain
Stream logic, flow rate manipulation
πŸ“‹ Findings Tracker
Loading findings…
Supabase setup required β€” run this in your Supabase SQL editor to enable findings persistence:
CREATE TABLE bounty_findings (
  id               bigserial PRIMARY KEY,
  created_at       timestamptz DEFAULT now(),
  protocol         text        NOT NULL,
  finding_type     text        NOT NULL,
  severity         text        NOT NULL,
  description      text,
  proof_of_concept text,
  estimated_reward numeric,
  platform_link    text,
  status           text        NOT NULL DEFAULT 'Draft'
);

ALTER TABLE bounty_findings ENABLE ROW LEVEL SECURITY;
CREATE POLICY "anon read"   ON bounty_findings FOR SELECT USING (true);
CREATE POLICY "anon insert" ON bounty_findings FOR INSERT WITH CHECK (true);
CREATE POLICY "anon update" ON bounty_findings FOR UPDATE USING (true);