π― Bounty Hunter
Turn security research into USDC
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);