v1.0 API Live for Hackathon Judges
The Emotional Firewall
for Solana Wallets
Integrate Aora's emotional intelligence directly into Phantom, Backpack, or Solflare. Protect your users from panic-selling and FOMO scams before the transaction is signed.
Transaction Intercept API
Call this endpoint before popping up the signature request in your wallet UI. If the user is exhibiting signs of extreme emotional distress (panic, sleep deprivation, FOMO), Aora will suggest an intervention.
POST/api/v1/intercept
// Request Body
{
"walletAddress": "7nx...9qZ",
"transactionContext": {
"type": "swap",
"percentOfPortfolio": 85,
"destination": "unknown_dex"
},
"recentMessages": [
"I can't take this dump anymore",
"Selling everything before it goes to zero"
]
}Example Response
{
"success": true,
"data": {
"wallet": "7nx...9qZ",
"analysis": {
"riskLevel": "critical",
"suggestedAction": "intercept_and_pause",
"interventionMessage": "Aora has detected extreme distress. We recommend pausing this transaction and taking a 5-minute breathing exercise. Are you sure you want to proceed?"
}
}
}